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.

Showing 1-2 of 2 results.

A376802 Expansion of 1/((1 - x)^3 - 9*x)^(1/3).

Original entry on oeis.org

1, 4, 31, 283, 2770, 28204, 294568, 3131650, 33732883, 367035814, 4025600941, 44439461275, 493218155119, 5498860571026, 61543476786067, 691095770653867, 7783168304357434, 87878978740300960, 994484816394177214, 11276915136560900662, 128106749179069022344
Offset: 0

Views

Author

Seiichi Manyama, Oct 04 2024

Keywords

Crossrefs

Partial sums of A361895.
Cf. A004987.

Programs

  • Mathematica
    CoefficientList[Series[1/Surd[((1-x)^3-9x),3],{x,0,30}],x] (* Harvey P. Dale, Dec 11 2024 *)
  • PARI
    my(N=30, x='x+O('x^N)); Vec(1/((1-x)^3-9*x)^(1/3))

Formula

a(n) = Sum_{k=0..n} (-9)^k * binomial(-1/3,k) * binomial(n+2*k,n-k).
a(n) = hypergeom([(1+n)/2, 1+n/2, -n], [2/3, 1], -4/3). - Stefano Spezia, May 04 2025

A376804 Expansion of 1/((1 - x)^3 - 9*x^3)^(1/3).

Original entry on oeis.org

1, 1, 1, 4, 13, 31, 79, 232, 673, 1891, 5401, 15742, 45958, 134122, 393394, 1159432, 3425101, 10137985, 30079405, 89437960, 266389615, 794667325, 2374097485, 7102303240, 21272892055, 63788000461, 191471030791, 575287348546, 1730027151334, 5206918491298
Offset: 0

Views

Author

Seiichi Manyama, Oct 04 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(1/((1-x)^3-9*x^3)^(1/3))

Formula

a(n) = Sum_{k=0..floor(n/3)} (-9)^k * binomial(-1/3,k) * binomial(n,n-3*k).
Showing 1-2 of 2 results.