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!)
A341386 Expansion of (-1 + Product_{k>=1} (1 + x^k)^k)^4. 10
1, 8, 44, 184, 662, 2120, 6256, 17276, 45277, 113568, 274592, 643220, 1465838, 3260428, 7097338, 15153288, 31791822, 65645360, 133584864, 268213400, 531879490, 1042657088, 2022113788, 3882468712, 7384455791, 13921287616, 26026092198, 48273051172, 88868177735 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,2
LINKS
MAPLE
g:= proc(n) option remember; `if`(n=0, 1, add(g(n-j)*add(d^2/
`if`(d::odd, 1, 2), d=numtheory[divisors](j)), j=1..n)/n)
end:
b:= proc(n, k) option remember; `if`(k=0, 1, `if`(k=1, `if`(n=0, 0,
g(n)), (q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2))))
end:
a:= n-> b(n, 4):
seq(a(n), n=4..32); # Alois P. Heinz, Feb 10 2021
MATHEMATICA
nmax = 32; CoefficientList[Series[(-1 + Product[(1 + x^k)^k, {k, 1, nmax}])^4, {x, 0, nmax}], x] // Drop[#, 4] &
CROSSREFS
Sequence in context: A250285 A059596 A327386 * A181358 A005798 A092877
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 10 2021
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 June 8 07:10 EDT 2024. Contains 373207 sequences. (Running on oeis4.)