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.

A262011 a(n) = (1/n!) * Product_{k=1..n} (k^3 + 1).

Original entry on oeis.org

1, 2, 9, 84, 1365, 34398, 1244061, 61136712, 3920391657, 317987323290, 31830531061329, 3854387943062748, 555353062796290941, 93897387078942114486, 18410594823692578876005, 4143611208319076419026192, 1061023445030203505546894289, 306698188757554119191614031538, 99387251945711843180260258108953
Offset: 0

Views

Author

Paul D. Hanna, Sep 08 2015

Keywords

Comments

Logarithmic derivative equals A262003.

Crossrefs

Programs

  • Mathematica
    Table[1/n! Product[k^3+1,{k,n}],{n,0,20}] (* Harvey P. Dale, Jul 19 2019 *)
  • PARI
    {a(n)=prod(k=1,n,(k^3+1))/n!}
    for(n=0,30,print1(a(n),", "))

Formula

a(n) = (n+1) * Product_{k=1..n} (k^2 - k + 1).
a(n) = (n+1) * A130032(n).