A062541 a(n) = floor(Pi^n * e^n).
1, 8, 72, 622, 5318, 45417, 387852, 3312153, 28284912, 241545633, 2062735514, 17615213065, 150429237853, 1284625710591, 10970362144062, 93683977036770, 800036264817077, 6832097070038330, 58344293161634133, 498244757010106385
Offset: 0
Links
- Harry J. Smith, Table of n, a(n) for n = 0..200
Programs
-
PARI
for(n=0,22,print(floor(Pi^n*exp(1)^n)))
-
PARI
{ default(realprecision, 200); PiE=Pi*exp(1); for (n=0, 200, write("b062541.txt", n, " ", PiE^n\1) ) } \\ Harry J. Smith, Aug 08 2009