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

A318694
Expansion of e.g.f. Product_{i>=1, j>=1} (1 + x^(i*j)/(i*j)).
3
1, 1, 2, 10, 40, 248, 1868, 14516, 131920, 1409040, 15697872, 191687472, 2663239104, 37878672960, 582357866400, 9898540886880, 172534018584960, 3192686545714560, 63844374067107840, 1309775114921541120, 28512040933544970240, 656888836504576112640, 15495311684125737031680
OFFSET
0,3
LINKS
FORMULA
E.g.f.: Product_{k>=1} (1 + x^k/k)^tau(k), where tau = number of divisors (A000005).
E.g.f.: exp(Sum_{k>=1} ( Sum_{d|k} (-d)^(1-k/d)*tau(d) ) * x^k/k).
MAPLE
seq(n!*coeff(series(mul((1+x^k/k)^tau(k), k=1..100), x=0, 23), x, n), n=0..22); # Paolo P. Lava, Jan 09 2019
MATHEMATICA
nmax = 22; CoefficientList[Series[Product[Product[(1 + x^(i j)/(i j)), {i, 1, nmax}], {j, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 22; CoefficientList[Series[Product[(1 + x^k/k)^DivisorSigma[0, k], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 22; CoefficientList[Series[Exp[Sum[Sum[(-d)^(1 - k/d) DivisorSigma[0, d], {d, Divisors[k]}] x^k/k, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-d)^(1 - k/d) DivisorSigma[0, d], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[n! a[n], {n, 0, 22}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 31 2018
STATUS
approved