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.

A255323 Product_{k=1..n} k^(k^4).

Original entry on oeis.org

1, 65536, 29060398333495723291328487792256607374737408
Offset: 1

Views

Author

Vaclav Kotesovec, Feb 21 2015

Keywords

Comments

The next term a(4) has 198 digits.

Crossrefs

Programs

  • Mathematica
    Table[Product[k^(k^4), {k, 1, n}], {n, 1, 5}]
  • PARI
    a(n)=prod(k=1,n,k^k^4) \\ Charles R Greathouse IV, Sep 08 2015

Formula

a(n) ~ A243264 * n^(n*(n+1)*(2*n+1)*(3*n^2+3*n-1)/30) / exp(n^5/25 - n^3/12 + 13*n/360), where A243264 = exp(-3*Zeta(5)/(4*Pi^4)).