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!)
A111932 Expansion of q * (psi(q) * psi(q^3))^2 in powers of q where psi() is a Ramanujan theta function. 6

%I #24 Sep 12 2023 02:25:55

%S 1,2,1,4,6,2,8,8,1,12,12,4,14,16,6,16,18,2,20,24,8,24,24,8,31,28,1,32,

%T 30,12,32,32,12,36,48,4,38,40,14,48,42,16,44,48,6,48,48,16,57,62,18,

%U 56,54,2,72,64,20,60,60,24,62,64,8,64,84,24,68,72,24,96,72,8,74,76,31

%N Expansion of q * (psi(q) * psi(q^3))^2 in powers of q where psi() is a Ramanujan theta function.

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

%C Cubic AGM theta functions: a(q) (see A004016), b(q) (A005928), c(q) (A005882).

%D Bruce C. Berndt, Ramanujan's Notebooks Part III, Springer-Verlag, see p. 223 Entry 3(iii).

%D Nathan J. Fine, Basic Hypergeometric Series and Applications, Amer. Math. Soc., 1988; p. 87, Eq. (33.2).

%H Seiichi Manyama, <a href="/A111932/b111932.txt">Table of n, a(n) for n = 1..10000</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 (1/3) * (b(q^2)^2 / b(q))* (c(q^2)^2 / c(q)) in powers of q where b(), c() are cubic AGM theta functions.

%F Expansion of (eta(q^2) * eta(q^6))^4 / (eta(q) * eta(q^3))^2 in powers of q.

%F Euler transform of period 6 sequence [ 2, -2, 4, -2, 2, -4, ...].

%F Multiplicative with a(2^e) = 2^e, a(3^e) = 1, a(p^e) = (p^(e+1) - 1) / (p - 1) if p>3.

%F G.f. A(x) satisfies 0 = f(A(x), A(x^2), A(x^4)) where f(u, v, w) = u*w * (u - 4*v) - v * (v - 4*w)^2.

%F G.f. is a period 1 Fourier series which satisfies f(-1 / (6 t)) = (3/4) (t/i)^2 g(t) where q = exp(2 Pi i t) and g() is the g.f. for A131946. - _Michael Somos_, Sep 19 2013

%F G.f.: Sum_{k>0} k * x^k * (1 - x^(2*k))^2 / (1 - x^(6*k)) = x * Product_{k>0} ((1 + x^k) * (1 + x^(3*k)))^4 * ((1 - x^k) * (1 - x^(3*k)))^2.

%F a(3*n) = a(n), a(2*n) = 2 * a(n).

%F Convolution square of A033762. - _Michael Somos_, Sep 19 2013

%F From _Amiram Eldar_, Sep 12 2023: (Start)

%F Dirichlet g.f.: (1 - 1/2^s) * (1 - 1/3^(s-1)) * zeta(s-1) * zeta(s).

%F Sum_{k=1..n} a(k) ~ c * n^2, where c = Pi^2/24 = 0.411233... (A222171). (End)

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

%t a[ n_] := If[ n < 1, 0, Sum[ Mod[n/d, 2] d KroneckerSymbol[ 9, d], { d, Divisors[ n]}]]; (* _Michael Somos_, Sep 19 2013 *)

%t a[ n_] := SeriesCoefficient[ q (QPochhammer[ q^2] QPochhammer[ q^6])^4 / (QPochhammer[ q] QPochhammer[ q^3])^2, {q, 0, n}]; (* _Michael Somos_, Sep 19 2013 *)

%o (PARI) {a(n) = if( n<1, 0, sumdiv(n, d, (n/d % 2) * d * (d%3>0)))};

%o (PARI) {a(n) = local(A, p, e); if( n<1, 0, A = factor(n); prod(k=1, matsize(A)[1], if( p=A[k,1], e=A[k,2]; if( p==2, p^e, if( p==3, 1, (p^(e+1) - 1) / (p-1)))))) };

%o (PARI) {a(n) = local(A); if( n<1, 0, n--; A = x * O(x^n); polcoeff( (eta(x^2 + A) * eta(x^6 + A))^4 / (eta(x + A) * eta(x^3 + A))^2, n))};

%o (Sage) A = ModularForms( Gamma0(6), 2, prec=50) . basis(); A[1] + 2*A[2]; # _Michael Somos_, Sep 19 2013

%Y Cf. A033762, A131946, A222171.

%Y Cf. A000122, A000700, A004016, A005882, A005928, A010054, A121373.

%K nonn,easy,mult

%O 1,2

%A _Michael Somos_, Aug 21 2005, Apr 18 2007

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 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)