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!)
A123532 Expansion of (eta(q) * eta(q^6))^7 / (eta(q^2) * eta(q^3))^5 in powers of q. 3
1, -7, 19, -23, 6, 11, 8, -55, 73, -42, 12, -5, 14, -56, 114, -119, 18, 65, 20, -138, 152, -84, 24, -37, 31, -98, 235, -184, 30, 66, 32, -247, 228, -126, 48, 49, 38, -140, 266, -330, 42, 88, 44, -276, 438, -168, 48, -101, 57, -217, 342, -322, 54, 227, 72, -440, 380, -210, 60, -30, 62, -224 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Ramanujan theta functions: f(q) (see A121373), phi(q) (A000122), psi(q) (A010054), chi(q) (A000700).
Cubic AGM theta functions: a(q) (see A004016), b(q) (A005928), c(q) (A005882).
LINKS
Eric Weisstein's World of Mathematics, Ramanujan Theta Functions
FORMULA
Euler transform of period 6 sequence [ -7, -2, -2, -2, -7, -4, ...].
Expansion of q * (phi(-q) * psi(q^3))^3 / (phi(-q^3) * psi(q)) in powers of q where phi(), psi() are Ramanujan theta functions.
Expansion of (b(q)^2 / b(q^2)) * (c(q^2)^2 / c(q)) / 3 in powers of q where b(), c() are cubic AGM theta functions.
G.f. is a period 1 Fourier series which satisfies f(-1 / (6 t)) = 6 (t / i)^2 f(t) where q = exp(2 Pi i t). - Michael Somos, Sep 19 2013
G.f.: x * Product_{k>0} (1 - x^k)^2 * (1 -x^(3*k))^2 * (1 + x^(3*k))^7 / (1 + x^k)^5.
Convolution of A006353 and A226235. - Michael Somos, Sep 19 2013
EXAMPLE
G.f. = q - 7*q^2 + 19*q^3 -23*q^4 + 6*q^5 + 11*q^6 + 8*q^7 - 55*q^8 + ...
MATHEMATICA
a[ n_] := If[ n < 1, 0, Sum[ { 1, -4, 6, -4, 1, 0}[[ Mod[ d, 6, 1]]] d, {d, Divisors[ n]}]]; (* Michael Somos, Sep 19 2013 *)
a[ n_] := SeriesCoefficient[ q (QPochhammer[ q] QPochhammer[ q^6])^7 / (QPochhammer[ q^2] QPochhammer[ q^3])^5, {q, 0, n}]; (* Michael Somos, Sep 19 2013 *)
PROG
(PARI) {a(n) = if( n<1, 0, sumdiv(n, d, d*[ 0, 1, -4, 6, -4, 1][ d%6 + 1]))};
(PARI) {a(n) = local(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( (eta(x + A) * eta(x^6 + A))^7 / (eta(x^2 + A) * eta(x^3 + A))^5, n))};
(PARI) {a(n) = if( n<1, 0, sumdiv(n, d, n/d *[ 0, 1, -9, 16, -9, 1][ d%6 + 1]))}; /* Michael Somos, Sep 19 2013 */
(Sage) A = ModularForms( Gamma0(6), 2, prec=50) . basis(); A[1] - 7*A[2]; # Michael Somos, Sep 19 2013
CROSSREFS
Sequence in context: A039513 A125265 A023152 * A113972 A082422 A129812
KEYWORD
sign
AUTHOR
Michael Somos, Oct 02 2006
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)