4
votes
1answer
113 views

Estimating the sum $\sum_{k=2}^{\infty} \frac{1}{k \ln^2(k)}$

By integral test, it is easy to see that $$\sum_{k=2}^{\infty} \frac{1}{k \ln^2(k)}$$ converges. [Here $\ln(x)$ denotes the natural logarithm, and $\ln^2(x)$ stands for $(\ln(x))^2$] I am ...
2
votes
3answers
41 views

Series evaluated to $m$ terms, approximating the error

Given a series $\displaystyle\sum_{n=0}^\infty a_n$, how can we bound the error (which I shall denote with $R_n$) when we evaluate it to $m$ terms? $$\sum_{n=0}^\infty a_n \approx \sum_{n=0}^m a_n$$ ...
3
votes
1answer
40 views

Estimate the given sum.

This is the question from "Data Structures and Algorithm Analysis in C" By Mark Weiss. It is the question 1.7. It goes as follows:- Estimate the sum ...
2
votes
2answers
67 views

Error Term in Passing from Summation to Integral

I encountered the following in a paper and do not understand how the error term is being bounded. In what follows, $n$ and $k$ are large integer constants. $$ \sum_{i=0}^{n-1} \ln\left(1 - ...
2
votes
1answer
126 views

Best and most efficient way to numerically compute $e$?

There are many well-known methods for efficiently numerically computing $\pi$, such as Chudnovsky's Method or perhaps Gauss-Legendre's algorithm. I was wondering what the best method for computing $e$ ...
33
votes
10answers
1k views

What it the fastest/most efficient algorithm for estimating Euler's Constant $\gamma$?

What it the fastest algorithm for estimating Euler's Constant $\gamma \approx0.57721$? Using the definition: $$\lim_{n\rightarrow\infty} \sum_{x=1}^{n}\frac{1}{x}-\log n=\gamma$$ I finally get 2 ...