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

A053986
a(n) = n^(n!).
6
0, 1, 4, 729, 281474976710656, 752316384526264005099991383822237233803945956334136013765601092018187046051025390625
OFFSET
0,3
COMMENTS
Next term has 561 digits.
FORMULA
Sum_{n>=1} 1/a(n) = A100084. - Amiram Eldar, Nov 11 2020
EXAMPLE
a(3) = 729 because 3^3! = 3^6 = 729.
MATHEMATICA
Table[n^n!, {n, 0, 5}] (* Alonso del Arte, Jan 03 2011 *)
PROG
(Maxima) makelist(n^n!, n, 0, 6); /* Martin Ettl, Jan 13 2013 */
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Henry Bottomley, Apr 03 2000
EXTENSIONS
One more term from Lior Manor, Nov 27 2001
STATUS
approved