OFFSET
0,4
COMMENTS
theta_2 is the standard Jacobi theta-constant function, Sum_{m=-oo..oo} q^((m+1/2)^2) = 2*q^(1/4)*(1+q^2+q^6+q^12+q^20+q^30+...) - see A098108.
Thus the above function t2 equals t2(z) = 1 + z^2 + z^6 + z^12 + ... = sum_{n>=0} z^(n(n+1)) = sum_{n>=0} z^A002378(n). But note that the sequence lists only the nonzero coefficients which are those of even powers. In other words, this is the sequence of coefficients of product(t'(x^2^d), d=0..5) with t'(z) = 1 + z + z^3 + z^6 + ... = sum_{n>=0} z^(n(n+1)/2) = sum_{n>=0} z^A000217(n). - M. F. Hasler, Oct 15 2014
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000
EXAMPLE
Here is the beginning of the theta-series theta_2:
2*q^(1/4) + 2*q^(9/4) + 2*q^(25/4) + 2*q^(49/4) + 2*q^(81/4) + 2*q^(121/4) + 2*q^(169/4) + 2*q^(225/4) + 2*q^(289/4) + 2*q^(361/4) + 2*q^(441/4) + 2*q^(529/4) + 2*q^(625/4) + 2*q^(729/4) + ...
t(x)*t(x^2)*t(x^4)*t(x^8)*t(x^16)*t(x^32) = 1 + x + x^2 + 2*x^3 + x^4 + 2*x^5 + 3*x^6 + 3*x^7 + 2*x^8 + 3*x^9 + 4*x^10 + 3*x^11 + .... - M. F. Hasler, Oct 15 2014
PROG
(PARI) my(x='x+O('x^99), t(z)=sum(i=0, 10, z^((i+1)*i/2))); Vec(prod(d=0, 5, t(x^2^d))) \\ M. F. Hasler, Oct 15 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Seiichi Manyama, May 24 2017
STATUS
approved