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.

Previous Showing 11-13 of 13 results.

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 *)

A122029 See Comments lines for definition.

Original entry on oeis.org

16, 38, 200, 32768, 12918916616, 1242818253229988572210659846, 1900850177472859316749829932381453683166126327573485314289555274100802310696341510
Offset: 4

Views

Author

N. J. A. Sloane, Aug 31 2006

Keywords

Comments

Let "N_b" denote "N read in base b" and let "N" denote "N written in base 10" (as in normal life). The sequence is given by 16, 16_32, (16_32)_64, ((16_32)_64)_128, etc., or in other words
......16....16.....16.....16.......etc.
..............32.....32.....32.........
.......................64.....64.......
................................128....
where the subscripts are evaluated from the top downwards
More precisely, "N_b" means "Take decimal expansion of N and evaluate it as if it were a base-b expansion".
The next term is too large to include.
A "dungeon" of numbers.

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

  • PARI
    rebase(n,bas)={ local(resul,i) ; resul= n % 10 ; i=1 ; while(n>0, n = n \10 ; resul += (n%10)*bas^i ; i++ ; ) ; return(resul) ; } { a=16 ; for(p=5,10, print(a) ; a=rebase(a,2^p) ; ) ; } \\ R. J. Mathar, Sep 01 2006

Extensions

Corrected and extended by R. J. Mathar, Sep 01 2006

A121297 For definition see Comments lines.

Original entry on oeis.org

11, 14, 21, 39, 78, 211, 1954, 63163, 17163259, 316235916142, 7475840758734855197, 77068358083998565749275388634420, 56080446471298599543571746837309517827424625680076701163
Offset: 10

Views

Author

N. J. A. Sloane, Aug 25 2006

Keywords

Comments

Using N_b to denote "N read in base b", the sequence is
......11....11.....11.....11.......etc.
..............13.....13.....13.........
.......................17.....17.......
................................19.....
where the subscripts are evaluated from the top downwards.
Analog of A121265 using primes >= 11.

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

  • Maple
    asubb := proc(a,b) local t1; t1:=convert(a,base,10); add(t1[j]*b^(j-1),j=1..nops(t1)): end;
    t1:=[10]; for n from 1 to 12 do t2:=f(t1[n],ithprime(n+5)); t1:=[op(t1),t2]; od: t1;
Previous Showing 11-13 of 13 results.