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!)
A208955 Expansion of phi(x) * phi(x^9) / chi(x^3)^2 in powers of x where phi(), chi() are Ramanujan theta functions. 1

%I #24 Mar 12 2021 22:24:46

%S 1,2,0,-2,-2,0,3,2,0,-2,-2,0,1,2,0,-2,-4,0,2,0,0,-4,-2,0,2,2,0,-2,-2,

%T 0,1,4,0,0,-2,0,4,2,0,-2,0,0,3,2,0,-2,-4,0,2,2,0,-4,0,0,0,4,0,-2,-2,0,

%U 2,2,0,0,-2,0,4,2,0,-2,-2,0,3,2,0,0,-4,0,2,2

%N Expansion of phi(x) * phi(x^9) / chi(x^3)^2 in powers of x where phi(), chi() are Ramanujan theta functions.

%C Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).

%C Number 74 of the 74 eta-quotients listed in Table I of Martin (1996).

%H G. C. Greubel, <a href="/A208955/b208955.txt">Table of n, a(n) for n = 0..1000</a>

%H Y. Martin, <a href="http://dx.doi.org/10.1090/S0002-9947-96-01743-6">Multiplicative eta-quotients</a>, Trans. Amer. Math. Soc. 348 (1996), no. 12, 4825-4856, see page 4852 Table I.

%H Michael Somos, <a href="/A030203/a030203.txt">Index to Yves Martin's list of 74 multiplicative eta-quotients and their A-numbers</a>

%H Michael Somos, <a href="/A010815/a010815.txt">Introduction to Ramanujan theta functions</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RamanujanThetaFunctions.html">Ramanujan Theta Functions</a>

%F Expansion of q^(-1/4) * eta(q^2)^5 * eta(q^3)^2 * eta(q^12)^2 * eta(q^18)^5 / (eta(q) * eta(q^4) * eta(q^6)^2 * eta(q^9) * eta(q^36))^2 in powers of q.

%F Euler transform of period 36 sequence [ 2, -3, 0, -1, 2, -1, 2, -1, 2, -3, 2, -1, 2, -3, 0, -1, 2, -4, 2, -1, 0, -3, 2, -1, 2, -3, 2, -1, 2, -1, 2, -1, 0, -3, 2, -2, ...].

%F G.f. is a period 1 Fourier series which satisfies f(-1 / (576 t)) = 24 (t/i) f(t) where q = exp(2 Pi i t).

%F a(n) = b(4*n + 1) where b(n) is multiplicative and b(2^e) = b(3^e) = 0^e, b(p^e) = (1 + (-1)^e)/2 if p == 3 (mod 4), b(p^e) = e+1 if p == 1, 5 (mod 24), b(p^e) = (e+1) * (-1)^e if p == 13, 17 (mod 24).

%F a(n) = (-1)^n * A121363(n). a(3*n + 2) = 0.

%e G.f. = 1 + 2*x - 2*x^3 - 2*x^4 + 3*x^6 + 2*x^7 - 2*x^9 - 2*x^10 + x^12 + ...

%e G.f. = q + 2*q^5 - 2*q^13 - 2*q^17 + 3*q^25 + 2*q^29 - 2*q^37 - 2*q^41 + ...

%t a[ n_] := SeriesCoefficient[ EllipticTheta[ 3, 0, x] EllipticTheta[ 3, 0, x^9] / QPochhammer[ -x^3, x^6]^2 , {x, 0, n}]; (* _Michael Somos_, Jun 09 2015 *)

%t a[ n_] := If[ n < 0, 0, (-1)^n With[ {m = 4 n + 1}, DivisorSum[ m, KroneckerSymbol[ 12, #] KroneckerSymbol[ 12, m/#] &]]]; (* _Michael Somos_, Jun 09 2015 *)

%o (PARI) {a(n) = my(m); if( n<0, 0, m = 4*n + 1; (-1)^n * dirmul( vector(m, k, kronecker( 12, k)), vector(m, k, kronecker( 12, k)))[m])};

%o (PARI) {a(n) = my(A, p, e); if( n<0, 0, n = 4*n + 1; A = factor(n); prod( k=1, matsize(A)[1], [p, e] = A[k,]; if( p<5, 0, p%4==3, (1 + (-1)^e)/2, (e+1) * if( p%24>12, (-1)^e, 1)))) };

%o (PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x^2 + A)^5 * eta(x^3 + A)^2 * eta(x^12 + A)^2 * eta(x^18 + A)^5 / (eta(x + A) * eta(x^4 + A) * eta(x^6 + A)^2 * eta(x^9 + A) * eta(x^36 + A))^2, n))};

%Y Cf. A121363.

%K sign

%O 0,2

%A _Michael Somos_, Mar 03 2012

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 March 28 09:04 EDT 2024. Contains 371240 sequences. (Running on oeis4.)