_Robert G. Wilson v (rgwv(AT)rgwv.com), _, Apr 02 2005
Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
_Robert G. Wilson v (rgwv(AT)rgwv.com), _, Apr 02 2005
proposed
approved
nonn,base,new
approved
proposed
Least number k such that (1+1/k)^k yields n digits of e (A001113).
1, 74, 164, 4822, 16609, 743325, 1640565, 45332594
1,2
a(1) = 1 because (1+1/1)^1= 2 which equals e in the units place.
a(2) = 74 because (1+1/73)^73 = 2.69989... but (1+1/74)^74 = 2.700139...; thus 74 is the least number which will give e to 2 place accuracy, namely 2.7.
f[0] = 0; f[n_] := f[n] = Block[{k = f[n - 1] + 1, d = FromDigits[{Take[ RealDigits[E, 10, 111][[1]], n], 1}]}, While[(1 + 1/k)^k < d, k++ ]; k]; Table[ f[n], {n, 6}]
Cf. A001113.
nonn,new
Robert G. Wilson v (rgwv(AT)rgwv.com), Apr 02 2005
approved