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

A067039
The tower function n^{(n-1)!}.
2
1, 2, 9, 4096, 59604644775390625
OFFSET
1,2
COMMENTS
a(n) = n^(n-1)^(n-2)^...^3^2^1 with all power operators nested from the left. Nesting from the right gives A049384. - Gus Wiseman, Jul 03 2019
EXAMPLE
a(4) = 4^(3!) = 4^6 = 4096.
PROG
(Maxima) makelist((n+1)^(n!), n, 0, 6); /* Martin Ettl, Jan 17 2013 */
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Dec 29 2001
STATUS
approved