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.

A124075 a(n) = 2^(3^(4^...^n)...).

Original entry on oeis.org

2, 8, 2417851639229258349412352
Offset: 2

Views

Author

David Applegate and N. J. A. Sloane, Nov 08 2006

Keywords

Comments

The next term is too large to include.
The next term, a(5) = 2^(3^(4^5)), has 1.124...*10^488 digits. - Amiram Eldar, Jul 13 2025

Examples

			a(4) = 2^(3^4) = 2417851639229258349412352.
		

References

  • David Applegate, Marc LeBrun and N. J. A. Sloane, Descending Dungeons and Iterated Base-Changing, in "The Mathematics of Preference, Choice and Order: Essays in Honor of Peter Fishburn", edited by Steven Brams, William V. Gehrlein and Fred S. Roberts, Springer, 2009, pp. 393-402.

Crossrefs

Programs

  • Mathematica
    a[n_] := Fold[#2^#1&, n, Range[2, n-1] // Reverse];
    Table[a[n], {n, 2, 4}] (* Jean-François Alcover, Oct 10 2018 *)