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

A330649
E.g.f.: Product_{k>=1} 1 / (1 - x^k/(k!*(1 - x)^k)).
1
1, 1, 5, 34, 299, 3226, 41202, 607545, 10153831, 189628750, 3913009178, 88406043991, 2170372901534, 57531498837515, 1637713270797411, 49830222530823615, 1613950394999111903, 55444724259894089718, 2013760368429942861810, 77105255895256112519259
OFFSET
0,3
FORMULA
a(n) = Sum_{k=0..n} binomial(n-1,k-1) * A005651(k) * n! / k!.
a(n) ~ c * 2^(n-1) * n!, where c = A247551 = 2.52947747207915264818... - Vaclav Kotesovec, Feb 16 2020
MATHEMATICA
nmax = 19; CoefficientList[Series[Product[1/(1 - x^k/(k! (1 - x)^k)), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[Binomial[n - 1, k - 1] Total[Apply[Multinomial, IntegerPartitions[k], {1}]] n!/k!, {k, 0, n}], {n, 0, 19}]
PROG
(PARI) seq(n)={Vec(serlaplace(prod(k=1, n, 1 / (1 - x^k/(k!*(1 - x)^k)) + O(x*x^n))))} \\ Andrew Howroyd, Feb 13 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 13 2020
STATUS
approved