OFFSET
-1,2
COMMENTS
LINKS
Seiichi Manyama, Table of n, a(n) for n = -1..10000
Michael Somos, Introduction to Ramanujan theta functions
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of (eta(q) * eta(q^7) / (eta(q^2) * eta(q^14)))^3 in powers of q.
Euler transform of period 14 sequence [ -3, 0, -3, 0, -3, 0, -6, 0, -3, 0, -3, 0, -3, 0, ...].
G.f. A(x) satisfies 0 = f(A(x), A(x^2)) where f(u, v) = u^2 * v - v^2 + 8 * u + 6 * u * v.
G.f. is a period 1 Fourier series which satisfies f(-1 / (14 t)) = 8 g(t) where q = exp(2 Pi i t) and g() is the g.f. for A120006.
G.f.: x^-1 * (Product_{k>0} (1 + x^k) * (1 + x^(7*k)))^-3.
a(n) = -(-1)^n * exp(2*Pi*sqrt(n/7)) / (2*7^(1/4)*n^(3/4)). - Vaclav Kotesovec, Sep 07 2017
EXAMPLE
G.f. = 1/q - 3 + 3*q - 4*q^2 + 9*q^3 - 12*q^4 + 15*q^5 - 24*q^6 + 39*q^7 - ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ (QPochhammer[ q, q^2] QPochhammer[ q^7, q^14])^3 / q, {q, 0, n}]; (* Michael Somos, Aug 26 2015 *)
PROG
(PARI) {a(n) = my(A); if( n<-1, 0, n++; A = x * O(x^n); polcoeff( (eta(x + A) * eta(x^7 + A) / (eta(x^2 + A) * eta(x^14 + A)))^3, n))};
CROSSREFS
KEYWORD
sign
AUTHOR
Michael Somos, Aug 18 2007
STATUS
approved