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

A096232
a(n) = floor(e^(e^n)).
7
1, 2, 15, 1618, 528491311, 514843556263457213182265, 28511235679461510605581038657982805983853648817939444953417128836
OFFSET
-1,2
COMMENTS
The next term is too large to include.
MATHEMATICA
$MaxExtraPrecision = 128; Table[ Floor[ Exp[ Exp[ n]]], {n, 0, 6}] (* Robert G. Wilson v, Jan 07 2007 *)
PROG
(PARI) default(realprecision, 10000); for(n=-1, 5, print1(floor(exp(exp(n))), ", ")) \\ Edward Jiang, Sep 06 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 15 2004
STATUS
approved