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”).

A246838
Expansion of f(-x^2) * f(-x^12)^2 / f(x^1, x^5) in powers of x where f() is Ramanujan theta function.
4
1, -1, 0, 0, -1, 0, 1, -1, 0, 2, -1, 0, 0, 0, 0, 2, -1, 0, 1, -1, 0, 0, -2, 0, 0, -1, 0, 2, 0, 0, 0, -1, 0, 0, -1, 0, 3, -1, 0, 0, -1, 0, 2, -1, 0, 2, 0, 0, 0, -1, 0, 0, -1, 0, 2, -1, 0, 0, 0, 0, 1, -2, 0, 0, -2, 0, 0, -1, 0, 2, -1, 0, 2, 0, 0, 0, -1, 0, 0, 0
OFFSET
0,10
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/4) * eta(q) * eta(q^4) * eta(q^6) * eta(q^12) / (eta(q^2) * eta(q^3)) in powers of q.
Euler transform of period 12 sequence [ -1, 0, 0, -1, -1, 0, -1, -1, 0, 0, -1, -2, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (144 t)) = 27^(1/2) (t/i) g(t) where q = exp(2 Pi i t) and g() is the g.f. for A246752.
a(3*n) = A112604(n). a(3*n + 1) = - A121361(n). a(3*n + 2) = 0.
EXAMPLE
G.f. = 1 - x - x^4 + x^6 - x^7 + 2*x^9 - x^10 + 2*x^15 - x^16 + x^18
+ ...
G.f. = q^3 - q^7 - q^19 + q^27 - q^31 + 2*q^39 - q^43 + 2*q^63 - q^67 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ x^(1/4) EllipticTheta[ 2, Pi/4, x^(1/2)] QPochhammer[ x^12]^2 / EllipticTheta[ 2, Pi/4, x^(3/2)], {x, 0, n}]; (* Michael Somos, Aug 27 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A) * eta(x^4 + A) * eta(x^6 + A) * eta(x^12 + A) / (eta(x^2 + A) * eta(x^3 + A)), n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Sep 04 2014
STATUS
approved