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!)
A327725 Expansion of Product_{i>=1, j>=1} (1 + x^(i*prime(j))). 0
1, 0, 1, 1, 1, 2, 3, 3, 4, 6, 7, 9, 12, 14, 18, 24, 27, 35, 43, 51, 64, 79, 92, 113, 137, 162, 195, 235, 276, 329, 394, 460, 546, 646, 753, 890, 1044, 1214, 1422, 1662, 1927, 2245, 2611, 3015, 3497, 4051, 4662, 5385, 6209, 7128, 8203, 9423, 10786 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Weigh transform of A001221.
LINKS
FORMULA
G.f.: Product_{k>=1} (1 + x^k)^A001221(k).
MATHEMATICA
nmax = 52; CoefficientList[Series[Product[(1 + x^k)^PrimeNu[k], {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d PrimeNu[d], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 52}]
PROG
(PARI) seq(n)={Vec(prod(k=1, n, (1 + x^k + O(x*x^n))^omega(k)))} \\ Andrew Howroyd, Sep 23 2019
CROSSREFS
Sequence in context: A358993 A198726 A117275 * A253926 A277579 A241447
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 23 2019
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)