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 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Dec 29 2001
STATUS
approved