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!)
A341253 Expansion of (-1 + Product_{k>=1} 1 / (1 + (-x)^k))^10. 2
1, 0, 10, 10, 55, 100, 265, 560, 1175, 2420, 4667, 9000, 16575, 30180, 53470, 93152, 159395, 268190, 444910, 727360, 1174563, 1873320, 2955010, 4611960, 7127305, 10912244, 16560430, 24924550, 37217620, 55160650, 81174270, 118651560, 172316445, 248718830, 356892660 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,3
LINKS
FORMULA
G.f.: (-1 + Product_{k>=1} (1 + x^(2*k - 1)))^10.
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, 10):
seq(a(n), n=10..44); # Alois P. Heinz, Feb 07 2021
MATHEMATICA
nmax = 44; CoefficientList[Series[(-1 + Product[1/(1 + (-x)^k), {k, 1, nmax}])^10, {x, 0, nmax}], x] // Drop[#, 10] &
CROSSREFS
Sequence in context: A328530 A238017 A111220 * A106789 A270012 A219911
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 July 28 10:08 EDT 2024. Contains 374686 sequences. (Running on oeis4.)