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.

A378503 Expansion of (Sum_{k>=0} binomial(4*k,k) * x^k)^3.

Original entry on oeis.org

1, 12, 132, 1396, 14436, 147120, 1483996, 14854968, 147821604, 1464031120, 14443875984, 142042418004, 1393053544508, 13630170286224, 133092301736232, 1297274743175856, 12624909478998948, 122692158505386960, 1190859983017752880, 11545524234978791952, 111820579340839270416
Offset: 0

Views

Author

Seiichi Manyama, Nov 28 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, binomial(4*k, k)*x^k)^3)

Formula

a(n) = Sum_{i+j+k=n, i,j,k >= 0} binomial(4*i,i) * binomial(4*j,j) * binomial(4*k,k).
G.f.: B(x)^3 where B(x) is the g.f. of A005810.
27*a(n) - 256*a(n-1) = 18*A005810(n) - A337291(n) for n > 0.