OFFSET
0,1
COMMENTS
Approximates Euler Mascheroni constant giving 3 correct decimal places.
The constant is not known to be transcendental, or even irrational. - Balarka Sen, May 06 2013
EXAMPLE
0.5773504972584854585501148923768706139231...
MATHEMATICA
RealDigits[(3*Pi^2 + 4*E^2)/(12*E*Pi), 10, 100][[1]] (* G. C. Greubel, Aug 30 2018 *)
PROG
(PARI) default(realprecision, 1020); x=10*Pi/exp(1)/4+10*exp(1)/Pi/3; d=0; for (n=0, 1000, d=floor(x); x=(x-d)*10; print1(d", ")) \\
(Magma) R:= RealField(100); (3*Pi(R)^2 + 4*Exp(2))/(12*Pi(R)*Exp(1)); // G. C. Greubel, Aug 30 2018
CROSSREFS
KEYWORD
AUTHOR
Jimmy Zotos, May 01 2013
EXTENSIONS
More terms from Balarka Sen, May 02 2013
STATUS
approved