A062360 a(n) = floor(e^(n*Pi)).
1, 23, 535, 12391, 286751, 6635623, 153552935, 3553321280, 82226315585, 1902773895292, 44031505860632, 1018919543279304, 23578503968558226, 545622913077172100, 12626092124920479897, 292176517015939695007
Offset: 0
References
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 2.
Links
- Harry J. Smith, Table of n, a(n) for n = 0..100
- M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
Crossrefs
Cf. A121905 (ceiling).
Programs
-
PARI
for(n=0,23,print(floor(exp(1)^(n*Pi))))
-
PARI
{ default(realprecision, 200); e=exp(1); for (n=0, 100, write("b062360.txt", n, " ", floor(e^(n*Pi))) ) } \\ Harry J. Smith, Aug 06 2009