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!)
A327731 Expansion of Product_{i>=1, j>=1} (1 + x^(i*(2*j - 1))). 2
1, 1, 1, 3, 3, 5, 8, 10, 14, 21, 28, 36, 51, 65, 86, 117, 148, 190, 251, 316, 402, 519, 647, 814, 1032, 1282, 1593, 1994, 2457, 3029, 3754, 4591, 5617, 6895, 8381, 10193, 12411, 14999, 18125, 21919, 26359, 31672, 38074, 45556, 54468, 65134, 77576, 92322 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Weigh transform of A001227.
LINKS
FORMULA
G.f.: Product_{k>=1} (1 + x^k)^A001227(k).
MATHEMATICA
nmax = 47; CoefficientList[Series[Product[(1 + x^k)^DivisorSum[k, Mod[#, 2] &], {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d DivisorSum[d, Mod[#, 2] &], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 47}]
PROG
(PARI) seq(n)={Vec(prod(k=1, n, (1 + x^k + O(x*x^n))^numdiv(k>>valuation(k, 2))))} \\ Andrew Howroyd, Sep 23 2019
CROSSREFS
Sequence in context: A116645 A177739 A323581 * A193744 A039872 A079965
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 24 05:44 EDT 2024. Contains 371918 sequences. (Running on oeis4.)