The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A319130 Expansion of Product_{k>=1} 1/(1 - x^k)^(2^omega(k)), where omega(k) = number of distinct primes dividing k (A001221). 1
1, 1, 3, 5, 10, 16, 31, 47, 81, 125, 203, 305, 482, 710, 1082, 1582, 2348, 3380, 4933, 7007, 10048, 14136, 19972, 27796, 38822, 53510, 73903, 101033, 138165, 187351, 254055, 341923, 459956, 614904, 821162, 1090740, 1447109, 1910665, 2519325, 3308019, 4336956 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Euler transform of A034444.
LINKS
N. J. A. Sloane, Transforms
FORMULA
G.f.: Product_{k>=1} 1/(1 - x^k)^A034444(k).
G.f.: exp(Sum_{k>=1} A048250(k)*x^k/(k*(1 - x^k))).
G.f.: exp(Sum_{k>=1} Sum_{j>=1} mu(j)^2*x^(j*k)/(k*(1 - x^(j*k)))), where mu = Möbius function (A008683).
log(a(n)) ~ sqrt(2*n*log(n)). - Vaclav Kotesovec, Sep 13 2018
MAPLE
with(numtheory): a:=series(mul(1/(1-x^k)^(2^nops(factorset(k))), k=1..50), x=0, 41): seq(coeff(a, x, n), n=0..40); # Paolo P. Lava, Apr 02 2019
MATHEMATICA
nmax = 40; CoefficientList[Series[Product[1/(1 - x^k)^(2^PrimeNu[k]), {k, 1, nmax}], {x, 0, nmax}], x]
nmax = 40; CoefficientList[Series[Exp[Sum[DivisorSum[k, # &, SquareFreeQ[#] &] x^k/(k (1 - x^k)), {k, 1, nmax}]], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[d 2^PrimeNu[d], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 40}]
CROSSREFS
Sequence in context: A000990 A129361 A062773 * A329467 A293818 A037246
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 11 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 20 05:07 EDT 2024. Contains 372703 sequences. (Running on oeis4.)