login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A134177 Expansion of phi(-x^3) * psi(x^4) + x * phi(-x) * psi(x^12) in powers of x where phi(), psi() are Ramanujan theta functions. 10
1, 1, -2, -2, 1, 2, 0, -2, 0, 0, -2, 0, 3, 1, -2, -2, 2, 4, 0, 0, 0, 0, -2, 0, 3, 0, -2, -4, 0, 2, 0, -2, 0, 0, 0, 0, 2, 3, -4, -2, 1, 2, 0, -2, 0, 0, -2, 0, 2, 2, -2, -2, 4, 2, 0, 0, 0, 0, 0, 0, 3, 0, -4, -2, 0, 2, 0, -2, 0, 0, 0, 0, 4, 3, -2, -2, 0, 4, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number 64 of the 74 eta-quotients listed in Table I of Martin (1996).
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
LINKS
Y. Martin, Multiplicative eta-quotients, Trans. Amer. Math. Soc. 348 (1996), no. 12, 4825-4856, see page 4852 Table I.
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Expansion of q^(-1/2) * eta(q^2)^4 * eta(q^3) * eta(q^8) * eta(q^12)^4 / ( eta(q) * eta(q^4)^3 * eta(q^6)^3 * eta(q^24) ) in powers of q.
a(n) = b(2*n + 1) where b() is multiplicative with b(2^e) = 0^e, b(3^e) = 1, b(p^e) = e+1 if p == 1, 11 (mod 24), b(p^e) = (e+1) * (-1)^e if p == 5, 7 (mod 24), b(p^e) = (1 + (-1)^e) / 2 if p == 13, 17, 19, 23 (mod 24).
Euler transform of period 24 sequence [ 1, -3, 0, 0, 1, -1, 1, -1, 0, -3, 1, -2, 1, -3, 0, -1, 1, -1, 1, 0, 0, -3, 1, -2, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (96 t)) = 96^(1/2) (t/i) f(t) where q = exp(2 Pi i t).
a(12*n + 6) = a(12*n + 8) = a(12*n + 9) = a(12*n + 11) = 0.
G.f.: Sum_{k>=0} a(k) * x^(2*k+1) = Sum_{k>0} Kronecker( -2, k) * (x^k - x^(3*k)) / (1 - x^(2*k) + x^(4*k)).
G.f.: Product_{k>0} (1 + x^k) * (1 - x^(2*k)) * (1 - x^(3*k)) * (1 + x^(6*k)) * (1 - x^(2*k) + x^(4*k))^2 / (1 - x^(4*k) + x^(8*k)).
a(n) = (-1)^n * A128580(n). a(12*n) = A113780(n).
EXAMPLE
G.f. = 1 + x - 2*x^2 - 2*x^3 + x^4 + 2*x^5 - 2*x^7 - 2*x^10 + 3*x^12 + x^13 - ...
G.f. = q + q^3 - 2*q^5 - 2*q^7 + q^9 + 2*q^11 - 2*q^15 - 2*q^21 + 3*q^25 + q^27 + ...
MATHEMATICA
a[ n_] := If[ n < 0, 0, With[ {m = 2 n + 1}, DivisorSum[ m, KroneckerSymbol[ 12, #] KroneckerSymbol[ -2, m/#] &]]]; (* Michael Somos, Jun 24 2015 *)
a[ n_] := SeriesCoefficient[ (EllipticTheta[ 4, 0, x^3] EllipticTheta[ 2, 0, x^2] + EllipticTheta[ 4, 0, x] EllipticTheta[ 2, 0, x^6]) / (2 x^(1/2)), {x, 0, n}]; (* Michael Somos, Jun 24 2015 *)
PROG
(PARI) {a(n) = if( n<0, 0, n = 2*n + 1; sumdiv(n, d, kronecker( 12, d) * kronecker( -2, n/d)))};
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A)^4 * eta(x^3 + A) * eta(x^8 + A) * eta(x^12 + A)^4 / ( eta(x + A) * eta(x^4 + A)^3 * eta(x^6 + A)^3* eta(x^24 + A) ), n))};
(PARI) {a(n) = my(A, p, e); if( n<0, 0, n = 2*n + 1; A = factor(n); prod( k=1, matsize(A)[1], [p, e] = A[k, ]; if( p==2, 0, p==3, 1, p%24>12, !(e%2), (e+1) * kronecker(3, p)^e)))};
CROSSREFS
Sequence in context: A145783 A145785 A094022 * A190615 A129402 A128580
KEYWORD
sign
AUTHOR
Michael Somos, Oct 11 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)