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!)
A254612 Expansion of f(-x) * f(-x^9) in powers of x where f() is a Ramanujan theta function. 3
1, -1, -1, 0, 0, 1, 0, 1, 0, -1, 1, 1, -1, 0, -1, -1, -1, 0, -1, 1, 1, 1, 1, -1, 1, -1, 1, 0, 0, 0, 1, -1, 0, 1, 0, -2, 0, 0, 0, 0, -2, 0, 0, 0, 0, 1, -1, -1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, -2, 0, 0, 1, -1, -1, -1, 1, 1, -1, 0, 1, 0, 0, 0, -2, 0, -1, -1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,36
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^(-5/12) * eta(q) * eta(q^9) in powers of q.
Euler transform of period 9 sequence [-1, -1, -1, -1, -1, -1, -1, -1, -2, ...].
G.f. is a period 1 Fourier series which satisfies f(-1 / (1296 t)) = 36 (t/i) f(t) where q = exp(2 Pi i t).
a(n) = b(12*n + 5) / sqrt(3) and A254613(n) = b(12*n + 1) where b() is multiplicative with b(2^e) = b(3^e) = 0^e, b(p^e) = (1 + (-1)^e)/2 if p == 7,11 (mod 12), b(p^e) = b(p)*b(p^(e-1)) - b(p^(e-2)) if p == 1,5 (mod 12) where b(p) = sqrt(3) * k12(x, y) * (if 3|y then 0 else 1) with 2*p = x^2 + 9*y^2 if p == 5 (mod 12) and b(p) = k12(9*y+x, y-x) + k12(9*y-x, y+x) with p = x^2 + 9*y^2 if p == 1 (mod 12) where k12(x,y) := Kronecker(12, x) * Kronecker(12, y). - Michael Somos, Feb 04 2015
G.f.: Product_{k>0} (1 - x^k) * (1 - x^(9*k)).
a(49*n + 20) = a(121*n + 50) = a(n).
A254613(n) = a(5*n) + (if n mod 5 = 2 then a((n-2)/5) otherwise 0). - Michael Somos, Feb 04 2015
EXAMPLE
G.f. = 1 - x - x^2 + x^5 + x^7 - x^9 + x^10 + x^11 - x^12 - x^14 - x^15 + ...
G.f. = q^5 - q^17 - q^29 + q^65 + q^89 - q^113 + q^125 + q^137 - q^149 + ...
MATHEMATICA
a[ n_] := SeriesCoefficient[ QPochhammer[ x] QPochhammer[ x^9], {x, 0, n}];
PROG
(PARI) {a(n) = my(A); if( n<0, 0, A = x * O(x^n); polcoeff( eta(x + A) * eta(x^9 + A), n))};
(PARI) {a(n) = my(x); if( n<0, 0, n = 12*n + 5; sum(y=1, sqrtint( 2*n\9), if( issquare( 2*n - 9*y^2, &x), kronecker( 12, x) * kronecker( 12, y))))};
(PARI) {a(n) = my(A, p, e, ap, w, k12, x, y, xy); if( n<0, 0, n = 12*n + 5; w = quadgen(12); (k12 = (u, v) -> kronecker( 12, u)*kronecker( 12, v)); (xy = (m) -> if(1, my(x); for(i=1, sqrtint( m\9), if( issquare( m - 9*i^2, &x), return([x, i]))))); A = factor(n); 1/w * prod(k=1, matsize(A)[1], p = A[k, 1]; e = A[k, 2]; if( p<5, 0, p%12==7 || p%12==11, !(e%2), ap = if( p%12==5, [x, y] = xy(2*p); if(y%3==0, 0, w*k12(x, y)), [x, y] = xy(p); k12(9*y + x, y-x) + k12(9*y - x, y+x)); polchebyshev(e, 2, ap/2))))}; /* Michael Somos, Feb 04 2015 */
CROSSREFS
Cf. A254613.
Sequence in context: A212434 A227186 A037134 * A363886 A227189 A359327
KEYWORD
sign
AUTHOR
Michael Somos, Feb 03 2015
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 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)