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.

A067055 a(n) = (n!)^(n*(n+1)/2).

Original entry on oeis.org

1, 1, 8, 46656, 63403380965376, 15407021574586368000000000000000, 1009212044656507725162109374628859215872000000000000000000000, 46564508204734663249790730337537405675293855389346558493242680777666577039360000000000000000000000000000
Offset: 0

Views

Author

Amarnath Murthy, Jan 02 2002

Keywords

Examples

			a(5) = (5!)^(1+...+5) = 120^15 = 15407021574586368000000000000000. a(6) = 720^21.
		

Crossrefs

Programs

  • Maple
    seq(mul(mul(j^k,j=1..n), k=1..n), n=0..7); # Zerinvary Lajos, Jun 02 2007
  • Mathematica
    Table[n!^(n(n + 1)/2), {n, 1, 7}]
  • PARI
    a(n) = (n!)^(n*(n+1)/2)

Formula

(Product of first n natural numbers )^(sum of first n natural numbers )
a(n) ~ (2*Pi)^(n*(n+1)/4) * n^(n*(n+1)*(2*n+1)/4) / exp((n+1)*(12*n^2 - 1)/24). - Vaclav Kotesovec, Apr 14 2023

Extensions

More terms from Jason Earls and Robert G. Wilson v, Jan 04 2002
a(0)=1 prepended by Alois P. Heinz, Nov 13 2018