login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A151028 A282619 A080252 * A281433 A277379 A227545
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 31 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 9 22:30 EDT 2024. Contains 372354 sequences. (Running on oeis4.)