login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A351818
G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - x)^5) / (1 - x)^5.
4
1, 1, 6, 31, 211, 1841, 18547, 210664, 2682657, 37807531, 581985596, 9696297528, 173702897000, 3327063115248, 67790086866271, 1462900566163696, 33310115601839624, 797687851718024035, 20032231443590167914, 526189230537615409571, 14423255501358439152231
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n+4*k+3,n-k-1) * a(k).
MATHEMATICA
nmax = 20; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)^5]/(1 - x)^5 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n + 4 k + 3, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 20 2022
STATUS
approved