cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A341371 Expansion of (1 / theta_4(x) - 1)^10 / 1024.

This page as a plain text file.
%I A341371 #8 Feb 10 2021 11:11:15
%S A341371 1,20,220,1750,11220,61424,297485,1305260,5276930,19905700,70742012,
%T A341371 238662710,769055130,2378885080,7093202060,20459149350,57254003225,
%U A341371 155851688980,413590326020,1072076963640,2719067915088,6757856447720,16480738170760,39486206985530,93043172921735
%N A341371 Expansion of (1 / theta_4(x) - 1)^10 / 1024.
%H A341371 Alois P. Heinz, <a href="/A341371/b341371.txt">Table of n, a(n) for n = 10..10000</a>
%F A341371 G.f.: (1/1024) * (-1 + Product_{k>=1} (1 + x^k) / (1 - x^k))^10.
%p A341371 g:= proc(n, i) option remember; `if`(n=0, 1/2, `if`(i=1, 0,
%p A341371       g(n, i-1))+add(2*g(n-i*j, i-1), j=`if`(i=1, n, 1)..n/i))
%p A341371     end:
%p A341371 b:= proc(n, k) option remember; `if`(k=0, 1, `if`(k=1, `if`(n=0, 0,
%p A341371       g(n$2)), (q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2))))
%p A341371     end:
%p A341371 a:= n-> b(n, 10):
%p A341371 seq(a(n), n=10..34);  # _Alois P. Heinz_, Feb 10 2021
%t A341371 nmax = 34; CoefficientList[Series[(1/EllipticTheta[4, 0, x] - 1)^10/1024, {x, 0, nmax}], x] // Drop[#, 10] &
%t A341371 nmax = 34; CoefficientList[Series[(1/1024) (-1 + Product[(1 + x^k)/(1 - x^k), {k, 1, nmax}])^10, {x, 0, nmax}], x] // Drop[#, 10] &
%Y A341371 Cf. A002448, A004411, A014968, A015128, A327388, A338223, A340947, A341236, A341364, A341365, A341366, A341367, A341368, A341369, A341370.
%K A341371 nonn
%O A341371 10,2
%A A341371 _Ilya Gutkovskiy_, Feb 10 2021