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”).
%I #10 Jul 04 2019 10:27:35
%S 1,2,9,4096,59604644775390625
%N The tower function n^{(n-1)!}.
%C 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
%e a(4) = 4^(3!) = 4^6 = 4096.
%o (Maxima) makelist((n+1)^(n!),n,0,6); /* _Martin Ettl_, Jan 17 2013 */
%Y Cf. A000142, A007489, A049384, A052409, A052410, A140319, A294338, A316782, A325624.
%K nonn
%O 1,2
%A _Amarnath Murthy_, Dec 29 2001