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.

A354054 a(n) = Product_{k=0..n} (k^6 + 1).

Original entry on oeis.org

1, 2, 130, 94900, 388805300, 6075471617800, 283463279271694600, 33349454806314869690000, 8742392830201411514885050000, 4646074730467898538293540742100000, 4646079376542629006192079035640742100000, 8230817672466612927467651920537784356160200000
Offset: 0

Views

Author

Vaclav Kotesovec, May 16 2022

Keywords

Crossrefs

Programs

  • Maple
    A354054 := proc(n)
        mul( k^6+1,k=0..n) ;
    end proc:
    seq(A354054(n),n=0..40) ; # R. J. Mathar, Jul 17 2023
  • Mathematica
    Table[Product[k^6 + 1, {k, 0, n}], {n, 0, 15}]
  • PARI
    a(n) = prod(k=1, n, k^6+1);

Formula

a(n) ~ (2*sinh(2*Pi) - 4*sinh(Pi)*cos(sqrt(3)*Pi)) * n^(6*n + 3) / exp(6*n).
a(n) ~ A258871 * (n!)^6.