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-1 of 1 results.

A370287 Coefficient of x^n in the expansion of ( (1+x)^3 + x^3 )^n.

Original entry on oeis.org

1, 3, 15, 87, 531, 3333, 21309, 138015, 902547, 5946153, 39406005, 262404585, 1754316045, 11767931451, 79165530375, 533883963567, 3608242091091, 24432635451465, 165721028062605, 1125743155558677, 7657535953619721, 52151890274636463, 355576809975214095
Offset: 0

Views

Author

Seiichi Manyama, Feb 14 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..floor(n/3)} binomial(n,k) * binomial(3*n-3*k,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) ).
Showing 1-1 of 1 results.