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”).

A344100
Expansion of Product_{k>=1} (1 + x^k)^binomial(k+4,5).
2
1, 1, 6, 27, 92, 323, 1070, 3527, 11314, 35708, 110478, 336629, 1011097, 2997233, 8778761, 25424358, 72867447, 206804742, 581573340, 1621407554, 4483701126, 12303384015, 33514076529, 90656680725, 243603875523, 650444927010, 1726229294595, 4554686670838, 11950683658941
OFFSET
0,3
FORMULA
G.f.: exp( Sum_{k>=1} (-1)^(k+1) * x^k / (k*(1 - x^k)^6) ).
MATHEMATICA
nmax = 28; CoefficientList[Series[Product[(1 + x^k)^Binomial[k + 4, 5], {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, (1/n) Sum[Sum[(-1)^(k/d + 1) d Binomial[d + 4, 5], {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 28}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 09 2021
STATUS
approved