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

A371487
Expansion of e.g.f. Product_{k>=2} 1 / (1 - x^k/k).
1
1, 0, 1, 2, 12, 44, 380, 2064, 20888, 166368, 1872792, 18917040, 253473792, 3042859104, 45895372224, 661334985024, 11073993828480, 182021308975104, 3418263102400128, 63023443312105728, 1302276954815368704, 26806365139264980480, 603186053115872024064, 13651035149069305878528
OFFSET
0,4
MAPLE
with(combinat):
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<2, 0, add(
(i-1)!^j*b(n-i*j, i-1)*multinomial(n, n-i*j, i$j), j=0..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..23); # Alois P. Heinz, Mar 26 2024
MATHEMATICA
nmax = 23; CoefficientList[Series[Product[1/(1 - x^k/k), {k, 2, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 25 2024
STATUS
approved