A378484 Expansion of (Sum_{k>=0} binomial(4*k,k) * x^k)^4.
1, 16, 208, 2480, 28176, 310336, 3344688, 35472672, 371570320, 3853862080, 39650662720, 405221752112, 4117879215472, 41643345090240, 419362920305952, 4207604570770752, 42079232716865424, 419609034657373120, 4173470598366784960, 41413032430984848832, 410071444666659404352
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..1000
Programs
-
Mathematica
nmax = 20; CoefficientList[Series[Sum[Binomial[4*k,k] * x^k, {k, 0, nmax}]^4, {x, 0, nmax}], x] (* Vaclav Kotesovec, Jul 19 2025 *)
-
PARI
my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, binomial(4*k, k)*x^k)^4)
Formula
a(n) = Sum_{i+j+k+l=n, i,j,k,l >= 0} binomial(4*i,i) * binomial(4*j,j) * binomial(4*k,k) * binomial(4*l,l).
G.f.: B(x)^4 where B(x) is the g.f. of A005810.
a(n) ~ n * 2^(8*n + 2) / 3^(3*n + 2) * (1 + 2^(7/2)/(3^(3/2)*sqrt(Pi*n))). - Vaclav Kotesovec, Jul 19 2025