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!)
A244554 Expansion of phi(q) * (phi(q) - phi(q^2)) / 2 in powers of q where phi() is a Ramanujan theta function. 2

%I #15 Sep 08 2022 08:46:08

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

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

%U -2,0,4,0,0,1,8,-4,-2,2,0,0,0,-1,2,4,-2,-2,0,0

%N Expansion of phi(q) * (phi(q) - phi(q^2)) / 2 in powers of q where phi() is a Ramanujan theta function.

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

%H G. C. Greubel, <a href="/A244554/b244554.txt">Table of n, a(n) for n = 1..2500</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 * f(-q, -q^7)^2 * phi(q) / psi(-q) = q * f(-q, -q^7)^2 * chi(q)^3 in powers of q where phi(), psi(), f() are Ramanujan theta functions.

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

%F Moebius transform is period 8 sequence [1, 0, -3, 0, 3, 0, -1, 0, ...].

%F Convolution product of A244560 and A107635. Convolution product of A000122 and A143259.

%F a(n) = (A004018(n) - A033715(n)) / 2 = A243747(2*n).

%F a(2*n) = a(n). a(8*n + 3) = -2 * A033761(n). a(8*n + 5) = 4 * A053692(n). a(8*n + 7) = 0.

%e G.f. = q + q^2 - 2*q^3 + q^4 + 4*q^5 - 2*q^6 + q^8 - q^9 + 4*q^10 - 2*q^11 + ...

%t a[ n_] := If[ n < 1, 0, Sum[ {1, 0, -3, 0, 3, 0, -1, 0}[[ Mod[ d, 8, 1] ]], {d, Divisors @ n}]];

%t a[ n_] := SeriesCoefficient[ EllipticTheta[ 3, 0, q] (EllipticTheta[ 3, 0, q] - EllipticTheta[ 3, 0, q^2]) / 2, {q, 0, n}];

%o (PARI) {a(n) = if( n<1, 0, sumdiv(n, d, [0, 1, 0, -3, 0, 3, 0, -1][d%8 + 1]))};

%o (PARI) {a(n) = my(A); if( n<0, 0, A = sum(k=1, sqrtint(n), 2 * x^k^2, 1 + x * O(x^n)); polcoeff( A * (A - subst(A, x, x^2)) / 2, n))};

%o (Sage) A = ModularForms( Gamma1(8), 1, prec=33) . basis(); A[1] + A[2];

%o (Magma) A := Basis( ModularForms( Gamma1(8), 1), 33); A[2] + A[3];

%Y Cf. A000122, A004018, A033715, A033761, A053692, A107635, A143259, A243747, A244560.

%K sign

%O 1,3

%A _Michael Somos_, Jun 30 2014

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 September 9 16:40 EDT 2024. Contains 375765 sequences. (Running on oeis4.)