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!)
A327726 Expansion of Product_{i>=1, j>=0} (1 + x^(i*3^j)). 0
1, 1, 1, 3, 3, 4, 7, 8, 10, 17, 20, 24, 36, 42, 52, 72, 85, 103, 139, 164, 197, 256, 301, 361, 456, 536, 637, 794, 930, 1098, 1347, 1571, 1848, 2235, 2600, 3042, 3646, 4228, 4922, 5845, 6754, 7835, 9229, 10633, 12284, 14382, 16519, 19013, 22127, 25339, 29073 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Weigh transform of A051064.
LINKS
FORMULA
G.f.: Product_{k>=1} (1 + x^k)^A051064(k).
MATHEMATICA
nmax = 50; CoefficientList[Series[Product[(1 + x^k)^IntegerExponent[3 k, 3], {k, 1, nmax}], {x, 0, nmax}], x]
a[n_] := a[n] = If[n == 0, 1, Sum[Sum[(-1)^(k/d + 1) d IntegerExponent[3 d, 3], {d, Divisors[k]}] a[n - k], {k, 1, n}]/n]; Table[a[n], {n, 0, 50}]
PROG
(PARI) seq(n)={Vec(prod(k=1, n, (1 + x^k + O(x*x^n))^(1+valuation(k, 3))))} \\ Andrew Howroyd, Sep 23 2019
CROSSREFS
Sequence in context: A343396 A091973 A328798 * A050066 A050064 A137894
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 17 21:22 EDT 2024. Contains 371767 sequences. (Running on oeis4.)