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

A356335
Expansion of e.g.f. ( Product_{k>0} 1/(1-x^k) )^(1/(1-x)).
5
1, 1, 6, 39, 332, 3290, 38994, 517986, 7762880, 128029464, 2311675560, 45188359920, 952047539112, 21452758881528, 515073388373712, 13114579450948920, 352881761400606720, 10000259978380933440, 297654582665846499264, 9280441162956638320704
OFFSET
0,3
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A356010(k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace((1/prod(k=1, N, 1-x^k))^(1/(1-x))))
(PARI) a356010(n) = n!*sum(k=1, n, sigma(k)/k);
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, a356010(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 04 2022
STATUS
approved