A067039 The tower function n^{(n-1)!}.
1, 2, 9, 4096, 59604644775390625
Offset: 1
Keywords
Examples
a(4) = 4^(3!) = 4^6 = 4096.
Programs
-
Maxima
makelist((n+1)^(n!),n,0,6); /* Martin Ettl, Jan 17 2013 */
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
a(4) = 4^(3!) = 4^6 = 4096.
makelist((n+1)^(n!),n,0,6); /* Martin Ettl, Jan 17 2013 */
Comments