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!)
A341371 Expansion of (1 / theta_4(x) - 1)^10 / 1024. 1
1, 20, 220, 1750, 11220, 61424, 297485, 1305260, 5276930, 19905700, 70742012, 238662710, 769055130, 2378885080, 7093202060, 20459149350, 57254003225, 155851688980, 413590326020, 1072076963640, 2719067915088, 6757856447720, 16480738170760, 39486206985530, 93043172921735 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,2
LINKS
FORMULA
G.f.: (1/1024) * (-1 + Product_{k>=1} (1 + x^k) / (1 - x^k))^10.
MAPLE
g:= proc(n, i) option remember; `if`(n=0, 1/2, `if`(i=1, 0,
g(n, i-1))+add(2*g(n-i*j, i-1), j=`if`(i=1, n, 1)..n/i))
end:
b:= proc(n, k) option remember; `if`(k=0, 1, `if`(k=1, `if`(n=0, 0,
g(n$2)), (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..34); # Alois P. Heinz, Feb 10 2021
MATHEMATICA
nmax = 34; CoefficientList[Series[(1/EllipticTheta[4, 0, x] - 1)^10/1024, {x, 0, nmax}], x] // Drop[#, 10] &
nmax = 34; CoefficientList[Series[(1/1024) (-1 + Product[(1 + x^k)/(1 - x^k), {k, 1, nmax}])^10, {x, 0, nmax}], x] // Drop[#, 10] &
CROSSREFS
Sequence in context: A125408 A213351 A140236 * A004411 A140354 A155673
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 April 19 02:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)