OFFSET
0,1
COMMENTS
Equivalent to: 1/2 e^(1/4) Pi^(1/2) erf(1/2) where erf(1/2) is error function.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
J.-P. Allouche and T. Baruchel, Variations on an error sum function for the convergents of some powers of e, arXiv preprint arXiv:1408.2206 [math.NT], 2014.
Eric Weisstein's World of Mathematics, Erf
EXAMPLE
0.5922965364693265756604150545390626872846166122169...
MAPLE
evalf(1/2*exp(1/4)*Pi^(1/2)*erf(1/2), 120) # Vaclav Kotesovec, Oct 16 2014
MATHEMATICA
NSum[n!/(2 n)!, {n, 1, Infinity}, WorkingPrecision -> 105]
RealDigits[1/2*E^(1/4)*Sqrt[Pi]*Erf[1/2], 10, 105][[1]] (* Jean-François Alcover, Feb 20 2014 *)
PROG
(PARI) /* needs GP version >= 2.6 */
N=200;
default(realprecision, N+10);
s=suminf(n=1, n!/(2*n)!);
digits( floor( 10^N*s ), 10 )
/* Joerg Arndt, Mar 11 2013 */
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Fred Daniel Kline, Mar 11 2013
STATUS
approved