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

A341223
Expansion of (-1 + Product_{k>=1} 1 / (1 - x^k))^5.
11
1, 10, 55, 225, 765, 2287, 6215, 15680, 37265, 84300, 182933, 383070, 777705, 1536490, 2963120, 5592060, 10349465, 18817760, 33665870, 59341785, 103176877, 177131330, 300530125, 504318530, 837632700, 1377874861, 2246061540, 3630059510, 5819556060, 9258393655, 14622472250
OFFSET
5,2
LINKS
MAPLE
b:= proc(n, k) option remember; `if`(k<2, `if`(n=0, 1-k, combinat[
numbpart](n)), (q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2)))
end:
a:= n-> b(n, 5):
seq(a(n), n=5..35); # Alois P. Heinz, Feb 07 2021
MATHEMATICA
nmax = 35; CoefficientList[Series[(-1 + Product[1/(1 - x^k), {k, 1, nmax}])^5, {x, 0, nmax}], x] // Drop[#, 5] &
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 07 2021
STATUS
approved