cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A341871 Coefficients of the series whose 48th power equals E_2(x)^2/E_4(x), where E_2(x) and E_4(x) are the Eisenstein series A006352 and A004009.

Original entry on oeis.org

1, -6, 558, -88884, 15433662, -2864048616, 552921962724, -109731286565040, 22220439670517814, -4569456313225317114, 951159953810624453208, -199945837161334089352548, 42373766861587365894611604
Offset: 0

Views

Author

Peter Bala, Feb 22 2021

Keywords

Comments

It is easy to see that E_2(x)^2/E_4(x) == 1 - 48*Sum_{k >= 1} (k + 5*k^3)*x^k/(1 - x^k) (mod 288), and also that the integer k + 5*k^3 is always divisible by 6. Hence, E_2(x)^2/E_4(x) == 1 (mod 288). It follows from Heninger et al., p. 3, Corollary 2, that the series expansion of (E_2(x)^2/E_4(x))^(1/48) = 1 - 6*x + 558*x^2 - 88884*x^3 + 15433662*x^4 - ... has integer coefficients.
Note that (E_2(x)^2/E_4(x))^(1/48) = (E_2(x)^4/E_8(x))^(1/96).

Crossrefs

Programs

  • Maple
    E(2,x) := 1 -  24*add(k*x^k/(1-x^k),   k = 1..20):
    E(4,x) := 1 + 240*add(k^3*x^k/(1-x^k), k = 1..20):
    with(gfun): series((E(2,x)^2/E(4,x))^(1/48), x, 20):
    seriestolist(%);

A341875 Coefficients of the series whose 24th power equals E_2(x)*E_4(x)/E_6(x), where E_2(x), E_4(x) and E_6(x) are the Eisenstein series A006352, A004009 and A013973.

Original entry on oeis.org

1, 30, 5310, 2453220, 910100190, 409796742600, 181276113779460, 84362079365838960, 39636500385830239350, 18986938020443181757410, 9186944625290601368703000, 4491611148118819794144792660, 2212757749022582852433835771860, 1097546094982154634980848454416920
Offset: 0

Views

Author

Peter Bala, Feb 23 2021

Keywords

Comments

Since E_2(x)*E_4(x)/E_6(x) == 1 - 24*Sum_{k >= 1} (k - 10*k^3 - 21*k^5)*x^k/(1 - x^k) (mod 144), and since the integer k - 10*k^3 - 21*k^5 is always divisible by 6 it follows that E_2(x)*E_4(x)/E_6(x) == 1 (mod 144). It follows from Heninger et al., p. 3, Corollary 2, that the series expansion of (E_2(x)*E_4(x)/E_6(x))^(1/24) = 1 + 30*x + 5310*x^2 + 2453220*x^3 + 910100190*x^4 + ... has integer coefficients.
From Peter Bala, Nov 16 2024 (Start):
Expansion of ( E_2(x)*E_8(x)/E_10(x) )^(1/24), where E_k(x) is the Eisenstein series of weight k.
Let R = 1 + x*Z[[x]] denote the set of integer power series with constant term equal to 1. Let P(n) = {g^n, g in R}. The Eisenstein series E_2(x) and E_10(x) lie in P(4) while the series E_8(x) lies in P(16) (Heninger et al.).
We claim that the series (E_2(x)*E_8(x))/E_10(x) belongs to P(24).
Proof.
E_2(x) = 1 - 24*Sum_{n >= 1} sigma_1(n)*x^n.
E_8(x) = 1 + 480*Sum_{n >= 1} sigma_7(n)*x^n.
E_10(x) = 1 - 264*Sum_{n >= 1} sigma_9(n)*x^n.
Hence, E_2(x)*E_8(x)/E_10(x) == 1 + (12^2)*Sum_{n >= 1} (1/6)*(-sigma_1(n) + 20*sigma_7(n) + 11*sigma_9(n))*x^n (mod 12^2) in R. The polynomial (1/6)*(-k + 20*k^7 + 11*k^9) of degree 9 is integer-valued since it takes integer values for 10 consective values of n (e.g., from n = 0 to n = 9).
Hence, E_2(x)*E_8(x)/E_10(x) == 1 (mod 12^2) == 1 (mod (2^4)*(3^2)) in R.
It follows from Heninger et al., Theorem 1, Corollary 2, that the series E_2(x)*E_8(x)/E_10(x) belongs to P((2^3)*3) = P(24). End Proof. (End)

Crossrefs

Cf. A006352 (E_2), A004009 (E_4), A008410 (E_8), A013973, A013974 (E_10). A108091 (E_8)^(1/16), A110150 ((E_10)^(1/4)), A289392 ((E_2)^(1/4)), A341871 - A341874, A377973, A377974, A377975, A377976, A377977.

Programs

  • Maple
    E(2,x) := 1 -  24*add(k*x^k/(1-x^k),   k = 1..20):
    E(4,x) := 1 + 240*add(k^3*x^k/(1-x^k), k = 1..20):
    E(6,x) := 1 - 504*add(k^5*x^k/(1-x^k), k = 1..20):
    with(gfun): series((E(2,x)*E(4,x)/E(6,x))^(1/24), x, 20):
    seriestolist(%);

Formula

a(n) ~ c * exp(2*Pi*n) / n^(23/24), where c = 0.0431061156115657949750305669836959595841497962033916083447436... - Vaclav Kotesovec, Mar 08 2021
Equals the series ( E_2(x)*E_8(x)/E_10(x) )^(1/24). - Peter Bala, Nov 16 2024
Showing 1-2 of 2 results.