OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..10000
Peter Luschny, Illustration of the integral
FORMULA
Equals EulerGamma / Pi.
Equals Integral_{0..infinity} -log(sqrt(z^2 + 1/4))/cosh(Pi*z)^2 dz.
EXAMPLE
0.183733452598307980759284468143756182827258561121282424722174416749125638699...
MAPLE
evalf(gamma/Pi, 20);
g := -int(log(z^2+1/4)*sech(Pi*z)^2/4, z=-10..10); evalf(g, 20);
# This is an approximation. For more valid decimal digits the
# range of integration and the precision must be increased.
MATHEMATICA
RealDigits[EulerGamma/Pi, 10, 40] [[1]]
PROG
(PARI) Euler/Pi \\ Altug Alkan, Apr 18 2018
(Magma) R:= RealField(100); EulerGamma(R)/Pi(R); // G. C. Greubel, Sep 05 2018
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Peter Luschny, Apr 18 2018
STATUS
approved