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

A322848
a(n) = floor(e^(e^n) - 1).
2
1, 14, 1617, 528491310, 514843556263457213182264, 28511235679461510605581038657982805983853648817939444953417128835
OFFSET
0,2
COMMENTS
Analog of A051179 replacing 2 with e.
MATHEMATICA
Table[Floor[E^(E^n)-1], {n, 0, 5}] (* Harvey P. Dale, Feb 05 2020 *)
PROG
(PARI)
default(realprecision, 10000);
A322848(n) = floor(exp(exp(n)))-1; \\ Antti Karttunen, Jan 17 2019
CROSSREFS
Cf. A051179.
Sequence in context: A279326 A200459 A164524 * A206644 A060614 A160305
KEYWORD
nonn,easy
AUTHOR
Greg Huber, Dec 28 2018
STATUS
approved