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.

A255321 Product_{k=1..n} k^(k^3).

Original entry on oeis.org

1, 256, 1952152956156672, 664283228512699358734362008580999708796213453161234432
Offset: 1

Views

Author

Vaclav Kotesovec, Feb 21 2015

Keywords

Comments

The next term a(5) has 142 digits.

Crossrefs

Programs

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

Formula

a(n) ~ A243263 * n^(n^2*(n+1)^2/4 - 1/120) / exp(n^4/16 - n^2/12).