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!)
A318579 Expansion of Product_{i>=1, j>=1} ((1 + x^(i*j))/(1 - x^(i*j)))^(i*j). 2
1, 2, 10, 30, 98, 270, 786, 2046, 5418, 13556, 33726, 81002, 192902, 447562, 1027990, 2316750, 5165398, 11345298, 24668952, 52972902, 112688802, 237193354, 494933514, 1023238806, 2098662698, 4269141516, 8620916966, 17280687472, 34405835066, 68044209950, 133732805458 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Convolution of A280540 and A280541.
LINKS
FORMULA
G.f.: Product_{k>=1} ((1 + x^k)/(1 - x^k))^(k*tau(k)), where tau(k) = number of divisors of k (A000005).
G.f.: exp(Sum_{k>=1} ( Sum_{d|k} (1 - (-1)^(k/d))*d^2*tau(d) ) * x^k/k).
log(a(n)) ~ 3^(2/3) * (7*Zeta(3))^(1/3) * log(n)^(1/3) * n^(2/3) / 2^(4/3). - Vaclav Kotesovec, Sep 03 2018
MAPLE
a:=series(mul(mul(((1+x^(i*j))/(1-x^(i*j)))^(i*j), j=1..100), i=1..100), x=0, 31): seq(coeff(a, x, n), n=0..30); # Paolo P. Lava, Apr 02 2019
MATHEMATICA
nmax = 30; CoefficientList[Series[Product[Product[((1 + x^(i j))/(1 - x^(i j)))^(i j), {i, 1, nmax}], {j, 1, nmax}], {x, 0, nmax}], x]
nmax = 30; CoefficientList[Series[Product[((1 + x^k)/(1 - x^k))^(k DivisorSigma[0, k]), {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(1 - (-1)^(k/d)) d^2 DivisorSigma[0, d], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 30}]
CROSSREFS
Sequence in context: A355775 A234471 A196317 * A064932 A343513 A285956
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 29 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 April 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)