login
A055200
a(-1) = 2; for n >= 0, a(n) is the 10^n-th digit of e after the decimal point.
0
2, 7, 4, 4, 4, 8, 8, 8, 6, 2, 1, 6, 7, 7
OFFSET
-1,1
LINKS
Alexander J. Yee, 500,000,000,000 Decimal Digits of E, March 7 2011 (numberworld.org).
EXAMPLE
7 is the first digit of e after the decimal point, 4 is the 10th decimal digit of e, etc.
MATHEMATICA
Do[Print[IntegerPart[Mod[N[E*Floor[10^(10^n)], 10^n + 25], 10]]], {n, -1, 7}] (* David Baugh, Apr 23 2004 *)
CROSSREFS
Cf. A001113.
Sequence in context: A347876 A241517 A145433 * A323755 A093590 A065629
KEYWORD
base,nonn,dumb
AUTHOR
Robert G. Wilson v, Jun 30 2000
EXTENSIONS
Four more terms from David Baugh, Apr 23 2004
a(11) from Robert G. Wilson v, Jul 08 2012
a(12) is 7, per private communications today from Alexander J. Yee. - Robert G. Wilson v, Jul 08 2012
STATUS
approved