While testing implementations of Wynn's $\epsilon$-algorithm and Levin's u-transformation I need the value of $$\sum_{n=0}^{\infty} \frac{(-1)^n}{\ln(n+2)} \cdot$$ The results of my algorithms are in agreement with the Pari/GP sumalt value of $0.92429989722293885595957$. But Wolfram Alpha gives the following approximated sum when entering
sum (-1)^n/(ln(n+2))
(a direct link from Math.SE will be mangled and does not work, here is the eq.):
$$\sum_{n=0}^{\infty}\dfrac{(-1)^n}{\log(2+n)}\approx1.00766524110155\ldots$$
Questions:
- Are the values from Pari and my algorithms correct?
- Is there a closed form analytical result?

a[n_] := 1/Log[n + 2]; EulerTransformation[0, 20]and can reproduce your result. But the result is always displayed with 4 digits even for error $\approx 10^{-8}$ and fornmax_ >= 22I get obscure errors. – gammatester Jun 26 '17 at 16:22