OFFSET
1,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..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.
FORMULA
Equals Sum_{k >= 1} (2^k / (2k-1)!!).
Equals Integral_{x=0..1} e^x dx/sqrt(1-x). - Amiram Eldar, Jul 04 2020
EXAMPLE
c = 4.06015693855740995107817985133190089786512917863694504946039...
MATHEMATICA
RealDigits[N[E Sqrt[Pi] Erf[1], 100]][[1]]
PROG
(MATLAB) exp(1)*sqrt(pi)*erf(1) \\ Altug Alkan, Nov 11 2015
(PARI) exp(1)*sqrt(Pi)*(1-erfc(1)) \\ Michel Marcus, Nov 11 2015
(PARI) vector(100, n, if(n<1, 0, default(realprecision, n+2); floor((exp(1)*sqrt(Pi)*(1-erfc(1)))*10^(n-1))%10)) \\ Altug Alkan, Nov 11 2015
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Fredrik Johansson, Feb 06 2007
STATUS
approved