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.

Showing 1-2 of 2 results.

A358972 a(n) = ((...((n!^(n-1)!)^(n-2)!)^...)^2!)^1!.

Original entry on oeis.org

1, 2, 36, 36520347436056576
Offset: 1

Views

Author

Arsen Vardanyan, Dec 07 2022

Keywords

Comments

Like n!^(n-1!)^...^2!^1! (A073581), but with all power operators nested from the left.
This sequence grows roughly doubly-exponentially. - Charles R Greathouse IV, Dec 07 2022

Examples

			a(4) = ((4!^3!)^2!)^1! = (24^6)^2 = 191102976^2 = 36520347436056576
		

Crossrefs

Cf. A073581 (exponents right to left).

Programs

  • PARI
    a(n) = n!^prod(i=2,n-1,i^(n-i)); \\ Kevin Ryde, Dec 09 2022

Formula

a(n) = n!^A000178(n-1). - Charles R Greathouse IV, Dec 07 2022
log log a(n) ~ 0.5*n^2*log^2 n. - Charles R Greathouse IV, Dec 07 2022

A209300 a(n) = (n+1)^((n+1)!) mod (n!)^n.

Original entry on oeis.org

0, 1, 208, 302113, 12135038976, 53366922838224001, 60766008114261830429310976, 6922077673356416725162445396958387201, 84806450837637486354121195943915016945664000000000, 120401303109437699738873226784807398144004603135278868200044928001
Offset: 1

Views

Author

Martin Ettl, Jan 18 2013

Keywords

Crossrefs

Programs

  • Maxima
    makelist(mod((n+1)^((n+1)!),(n!)^n),n,1,10);

Extensions

Offset changed to 1 by Georg Fischer, Mar 31 2025
Showing 1-2 of 2 results.