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.

A370284 Coefficient of x^n in the expansion of 1/( (1-x)^3 - x^3 )^n.

Original entry on oeis.org

1, 3, 21, 168, 1425, 12483, 111594, 1011636, 9264753, 85510590, 794087151, 7410887718, 69446624910, 653019755430, 6158495001960, 58226492157048, 551725482707505, 5238008159399163, 49814314319342424, 474467729545936650, 4525387365179378775
Offset: 0

Views

Author

Seiichi Manyama, Feb 13 2024

Keywords

Crossrefs

Cf. A369114.

Programs

  • PARI
    a(n) = sum(k=0, n\3, binomial(n+k-1, k)*binomial(4*n-1, n-3*k));

Formula

a(n) = Sum_{k=0..floor(n/3)} binomial(n+k-1,k) * binomial(4*n-1,n-3*k).
The g.f. exp( Sum_{k>=1} a(k) * x^k/k ) has integer coefficients and equals (1/x) * Series_Reversion( x * ((1-x)^3 - x^3) ). See A369114.