login

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”).

A121918
a(n) = ceiling((Pi+e)^(n*Pi)).
2
1, 259, 66802, 17265409, 4462406596, 1153350806022, 298094324981779, 77045272021641917, 19913072619720776033, 5146720243221262934094, 1330218081751512472685764, 343807329988307215923432747, 88860226586342124489251555257, 22966758356328845813340839281382
OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..199 [Offset shifted by Georg Fischer, Sep 02 2022]
MATHEMATICA
With[{a = \[Pi] + E}, Ceiling[a^(\[Pi] Range[0, 20])]] (* Vincenzo Librandi, Feb 21 2013 *)
PROG
(PARI) for(n=0, 50, print1(ceil((Pi+exp(1))^(n*Pi)), ", ")) \\ G. C. Greubel, Nov 06 2017
(Magma) C<i> := ComplexField(); [Ceiling((Pi(C) + Exp(1))^(n*Pi(C))): n in [0..50]]; // G. C. Greubel, Nov 06 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Mohammad K. Azarian, Sep 02 2006
EXTENSIONS
Offset changed to 0 by Georg Fischer, Sep 02 2022
STATUS
approved