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!)
A260958 Expansion of (a(q) - 3*a(q^2) + 3*a(q^3) - 4*a(q^4) + 3*a(q^6)) / 6 in powers of q where a() is a cubic AGM theta function. 1
0, 1, -3, 4, -3, 0, 0, 2, -3, 4, 0, 0, 0, 2, -6, 0, -3, 0, 0, 2, 0, 8, 0, 0, 0, 1, -6, 4, -6, 0, 0, 2, -3, 0, 0, 0, 0, 2, -6, 8, 0, 0, 0, 2, 0, 0, 0, 0, 0, 3, -3, 0, -6, 0, 0, 0, -6, 8, 0, 0, 0, 2, -6, 8, -3, 0, 0, 2, 0, 0, 0, 0, 0, 2, -6, 4, -6, 0, 0, 2, 0, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Cubic AGM theta functions: a(q) (see A004016), b(q) (A005928), c(q) (A005882).
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 * f(q) * phi(q^3) * chi(q^3)^2 * psi(q^9) / (chi(q)^2 * phi(q^9)) in powers of q where phi(), psi(), chi(), f() are Ramanujan theta functions.
Expansion of eta(q)^3 * eta(q^4)^2 * eta(q^6)^9 * eta(q^9) * eta(q^36)^2 / (eta(q^2)^4 * eta(q^3)^4 * eta(q^12)^4 * eta(q^18)^3) in powers of q.
Euler transform of period 36 sequence [ -3, 1, 1, -1, -3, -4, -3, -1, 0, 1, -3, -2, -3, 1, 1, -1, -3, -2, -3, -1, 1, 1, -3, -2, -3, 1, 0, -1, -3, -4, -3, -1, 1, 1, -3, -2, ...].
Moebius transform is period 36 sequence [ 1, -4, 3, 0, -1, 0, 1, 0, 0, 4, -1, 0, 1, -4, -3, 0, -1, 0, 1, 0, 3, 4, -1, 0, 1, -4, 0, 0, -1, 0, 1, 0, -3, 4, -1, 0, ...].
a(2*n) = A113448(n). a(3*n + 1) = A122861(n). a(6*n) = 0. a(6*n + 1) = A097195(n). a(6*n + 2) = a(12*n + 4) = -3 * A033687(n). a(6*n + 3) = 4 * A033762(n). a(6*n + 5) = a(12*n + 10) = 0.
EXAMPLE
G.f. = x - 3*x^2 + 4*x^3 - 3*x^4 + 2*x^7 - 3*x^8 + 4*x^9 + 2*x^13 + ...
MATHEMATICA
a[ n_] := If[ n < 1, 0, {1, -3, 4, -3, 1, 0}[[Mod[ n, 6, 1]]] Sum[ {1, 0, 0, 0, -1, 0}[[Mod[ d, 6, 1]]], {d, Divisors @ n}]];
a[ n_] := If[ n < 1 || Mod[n, 6] == 0, 0, Times @@ (Which[ # == 1, 1, # == 2, -2 - Mod[#2, 2], # == 3, 4, Mod[#, 6] == 5, 1 - Mod[#2, 2], True, #2 + 1] & @@@ FactorInteger @ n)];
a[ n_] := SeriesCoefficient[ QPochhammer[ x] EllipticTheta[ 3, 0, x^3] QPochhammer[ -x^3, x^6]^2 EllipticTheta[ 2, 0, x^(9/2)] / (2 x^(1/8) QPochhammer[-x, x^2]^2 EllipticTheta[ 3, 0, x^9]), {x, 0, n}];
PROG
(PARI) {a(n) = if( n<1, 0, [0, 1, -3, 4, -3, 1][n%6+1] * sumdiv(n, d, [0, 1, 0, 0, 0, -1][n/d%6+1]))};
(PARI) {a(n) = my(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( eta(x + A)^3 * eta(x^4 + A)^2 * eta(x^6 + A)^9 * eta(x^9 + A) * eta(x^36 + A)^2 / (eta(x^2 + A)^4 * eta(x^3 + A)^4 * eta(x^12 + A)^4 * eta(x^18 + A)^3), n))};
CROSSREFS
Sequence in context: A244364 A218610 A346058 * A260965 A278214 A359601
KEYWORD
sign
AUTHOR
Michael Somos, Aug 05 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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)