cp's OEIS Frontend

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.

A067039 The tower function n^{(n-1)!}.

Original entry on oeis.org

1, 2, 9, 4096, 59604644775390625
Offset: 1

Views

Author

Amarnath Murthy, Dec 29 2001

Keywords

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

Examples

			a(4) = 4^(3!) = 4^6 = 4096.
		

Crossrefs

Programs

  • Maxima
    makelist((n+1)^(n!),n,0,6); /* Martin Ettl, Jan 17 2013 */