OFFSET
0,3
COMMENTS
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_6(x) lies in P(12) (Heninger et al.).
We claim that the series 2*E_6(x) - E_6(x)^2 belongs to P(6048).
Proof.
E_6(x) = 1 - 504*Sum_{n >= 1} sigma_5(n)*x^n. Hence,
2*E_6(x) - E_6(x)^2 = 1 - (504^2)*( Sum_{n >= 1} sigma_5(n)*x^n )^2 is in R.
Hence, 2*E_6(x) - E_6(x)^2 == 1 (mod 504^2) == 1 (mod (2^6)*(3^4)*(7^2)).
It follows from Heninger et al., Theorem 1, Corollary 2, that the series 2*E_6(x) - E_6(x)^2 belongs to P((2^5)*(3^3)*7) = P(6048). End Proof.
MAPLE
with(numtheory):
E := proc (k) local n, t1; t1 := 1 - 2*k*add(sigma[k-1](n)*q^n, n = 1..30)/bernoulli(k); series(t1, q, 30) end:
seq(coeftayl((2*E(6) - E(6)^2)^(1/6048), q = 0, n), n = 0..20);
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Peter Bala, Nov 14 2024
STATUS
approved