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.

A051675 "Second factorials": Product_{k=1..n} k^(k^2).

Original entry on oeis.org

1, 16, 314928, 1352605460594688, 403107840000000000000000000000000, 4157825501361955044460594652554199040000000000000000000000000
Offset: 1

Views

Author

Keywords

References

  • Spyros G. Kanellos: Mathematical Researches and Results [in Greek]. Athens, 1965.

Crossrefs

Programs

  • Magma
    [(&*[k^(k^2): k in [1..n]]): n in [1..10]]; // G. C. Greubel, Oct 14 2018
  • Maple
    A051675 := proc(n) local k; mul(k^(k^2),k=1..n); end;
  • Mathematica
    Table[Product[k^(k^2),{k,1,n}],{n,1,10}] (* Vaclav Kotesovec, Feb 20 2015 *)
  • PARI
    for(n=1, 10, print1(prod(k=1,n, k^(k^2)), ", ")) \\ G. C. Greubel, Oct 14 2018
    

Formula

a(n) ~ n^(n*(n+1)*(2n+1)/6) / exp(n^3/9 - n/12 - Zeta(3)/(4*Pi^2)), where Zeta(3) = A002117 = 1.2020569031595942853997... . - Vaclav Kotesovec, Feb 20 2015