login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A259790
Expansion of f(-x)^3 * phi(x^2) in powers of x where phi(), f() are Ramanujan theta functions.
1
1, -3, 2, -1, 0, 10, -7, 0, -12, -6, 9, 10, 18, 0, -14, -11, 0, -22, 20, -6, 0, 23, 0, 4, -14, 0, 0, 0, 3, 26, -30, 0, 2, -28, 0, 10, -13, 0, 20, 26, 0, 0, 18, 0, 34, -19, -30, -60, 0, 0, 2, -6, 0, -2, 34, 21, -14, 42, 0, 0, -12, 0, 0, 4, 0, -22, -23, 0, -12
OFFSET
0,2
COMMENTS
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
LINKS
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of q^(-3/8) * eta(q)^3 * eta(q^4)^5 / (eta(q^2)^2 * eta(q^8)^2) in powers of q.
Euler transform of period 8 sequence [ -3, -1, -3, -6, -3, -1, -3, -4, ...].
G.f.: Product_{k>0} (1 - x^k)^3 * (1 + x^(2*k))^2 * (1 - x^(4*k)) / (1 + x^(4*k))^2.
EXAMPLE
G.f. = 1 - 3*x + 2*x^2 - x^3 + 10*x^5 - 7*x^6 - 12*x^8 - 6*x^9 + 9*x^10 + ...
G.f. = q^3 - 3*q^11 + 2*q^19 - q^27 + 10*q^43 - 7*q^51 - 12*q^67 - 6*q^75 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ x]^3 EllipticTheta[ 3, 0, x^2], {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A)^3 * eta(x^4 + A)^5 / (eta(x^2 + A)^2 * eta(x^8 + A)^2), n))};
CROSSREFS
Sequence in context: A004444 A204533 A357079 * A246654 A370506 A184182
KEYWORD
sign
AUTHOR
Michael Somos, Jul 05 2015
STATUS
approved