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.

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

Original entry on oeis.org

1, 4, 42, 499, 6250, 80634, 1060269, 14127852, 190102482, 2577310285, 35150819132, 481734467955, 6628611532621, 91517611501008, 1267182734325900, 17589579427715124, 244689432718144770, 3410399867585709501, 47613678409439712861, 665756829352248572725
Offset: 0

Views

Author

Seiichi Manyama, Feb 13 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..n} binomial(n+k-1,k) * binomial(4*n+2*k-1,n-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) ). See A369215.