OFFSET
0,1
COMMENTS
This fraction equals sqrt(2e/Pi)/erfi(1/sqrt(2)) - 1. - Robert Israel, Aug 29 2007
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..10000
Sci.math, Continued Fractions.
EXAMPLE
0.3797319547409956328...
MATHEMATICA
n=150; s=n; While[n-2>=0, s=n-2 + (n-1)/s; n=n-2]; RealDigits[N[s, 120]][[1]]
RealDigits[N[Sqrt[2E/Pi]/Erfi[1/Sqrt[2]]-1, 120]][[1]] (* T. D. Noe, Oct 06 2008 *)
PROG
(PARI) {Erfi(z) = -I*(1.0-erfc(I*z))};
real(sqrt(2*exp(1)/Pi)/Erfi(1/sqrt(2)) - 1) \\ G. C. Greubel, Apr 09 2018
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
T. D. Noe, Oct 10 2005
EXTENSIONS
Sci.math link from Bhushit Joshipura (joshipura(AT)gmail.com), Jul 15 2008
STATUS
approved