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!)
A341394 Expansion of (-1 + Product_{k>=1} (1 + x^k)^k)^10. 3
1, 20, 230, 1940, 13285, 77944, 405250, 1910330, 8300380, 33655860, 128574734, 466317760, 1615509765, 5373215450, 17230062315, 53457917856, 160963157005, 471587847690, 1347417640405, 3761860656610, 10280578499844, 27543107112940, 72440412567485 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,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, 10):
seq(a(n), n=10..32); # Alois P. Heinz, Feb 10 2021
MATHEMATICA
nmax = 32; CoefficientList[Series[(-1 + Product[(1 + x^k)^k, {k, 1, nmax}])^10, {x, 0, nmax}], x] // Drop[#, 10] &
CROSSREFS
Sequence in context: A195265 A321674 A264876 * A023018 A073386 A022648
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 September 8 22:43 EDT 2024. Contains 375759 sequences. (Running on oeis4.)