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.

A260614 Product of the first n ultrafactorials ((n!)^(n!)).

Original entry on oeis.org

1, 1, 4, 186624, 248907105618907424441185380787996852224
Offset: 0

Views

Author

Matthew Campbell, Aug 13 2015

Keywords

Comments

a(6) is about 10^2345.
This could be called a superultrafactorial by analogy with factorial and superfactorial.

Examples

			a(3) = (1!)^(1!) * (2!)^(2!) * (3!)^(3!) = 1^1 * 2^2 * 6^6 = 1 * 4 * 46656 = 186624.
		

Crossrefs

Programs

  • Magma
    [Factorial(n)^Factorial(n): n in [0..5]]; // Vincenzo Librandi, Aug 29 2015
  • Mathematica
    Table[Product[(m!)^(m!), {m, 0, n}], {n, 0, 5}]
  • PARI
    a(n)=prod(k=2,n,k!^k!) \\ Charles R Greathouse IV, Aug 14 2015
    

Formula

a(n) = Product_{k=1..n} A046882(k).