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!)
A341247 Expansion of (-1 + Product_{k>=1} 1 / (1 + (-x)^k))^8. 9
1, 0, 8, 8, 36, 64, 148, 296, 562, 1080, 1920, 3440, 5890, 9992, 16532, 26920, 43175, 68144, 106260, 163472, 248824, 374504, 558212, 824208, 1206409, 1751360, 2522692, 3607456, 5122848, 7227392, 10132948, 14123000, 19573393, 26981768, 37003700, 50499952, 68595956 (list; graph; refs; listen; history; text; internal format)
OFFSET
8,3
LINKS
FORMULA
G.f.: (-1 + Product_{k>=1} (1 + x^(2*k - 1)))^8.
MAPLE
g:= proc(n) option remember; `if`(n=0, 1, add(add([0, d, -d, d]
[1+irem(d, 4)], d=numtheory[divisors](j))*g(n-j), j=1..n)/n)
end:
b:= proc(n, k) option remember; `if`(k<2, `if`(n=0, 1-k, g(n)),
(q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2)))
end:
a:= n-> b(n, 8):
seq(a(n), n=8..44); # Alois P. Heinz, Feb 07 2021
MATHEMATICA
nmax = 44; CoefficientList[Series[(-1 + Product[1/(1 + (-x)^k), {k, 1, nmax}])^8, {x, 0, nmax}], x] // Drop[#, 8] &
CROSSREFS
Sequence in context: A183400 A111218 A339340 * A188275 A319019 A278846
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 07 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 April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)