A062511 a(n) = round(exp(n * Pi)).
1, 23, 535, 12392, 286751, 6635624, 153552935, 3553321281, 82226315586, 1902773895292, 44031505860632, 1018919543279305, 23578503968558226, 545622913077172100, 12626092124920479898, 292176517015939695007
Offset: 0
Links
- Harry J. Smith, Table of n, a(n) for n = 0..100
Programs
-
Magma
C := ComplexField(); [Round(Exp(n*Pi(C))): n in [0..30]]; // G. C. Greubel, Jan 15 2018
-
Mathematica
Round[Exp[Range[0,20]Pi]] (* Harvey P. Dale, Oct 06 2014 *)
-
PARI
for(n=0,21,print1(round(exp(n*Pi)), ", "))
-
PARI
{ default(realprecision, 200); for (n=0, 100, write("b062511.txt", n, " ", round(exp(n*Pi))) ) } \\ Harry J. Smith, Aug 08 2009