Ben Green's Open Problem 46 #
What is the largest $y$ for which one may cover the interval $[y]$ by residue classes $a_p \pmod{p}$, one for each prime $p \leq x$?
References:
- [Gr24] Ben Green's Open Problem 46
- [FGK18] Ford, K., Green, B., Konyagin, S., Maynard, J., & Tao, T. (2018). Long gaps between primes. Journal of the American Mathematical Society, 31(1), 65-105.
- [Iw78] Iwaniec, Henryk. "On the problem of Jacobsthal." Demonstratio Mathematica 11.1 (1978): 225-232.
Given $x$ and $y$, can we cover the interval $[1, y]$ by residue classes $a_p \pmod p$ for each prime $p \le x$?
Equations
- Green46.IsCoveredByResidues x y = ∃ (a : ℕ → ℕ), ∀ m ∈ Finset.Icc 1 y, ∃ p ≤ x, Nat.Prime p ∧ m ≡ a p [MOD p]
Instances For
The maximum $y$ for a given $x$, cast to a real number for asymptotics.
Equations
- Green46.maxY x = ↑(sSup {y : ℕ | Green46.IsCoveredByResidues x y})
Instances For
theorem
Green46.green_46.improve_lower :
have ans := sorry;
bestLower =o[Filter.atTop] ans ∧ ans =O[Filter.atTop] maxY
We conjecture that the best-known lower bound can be improved.
theorem
Green46.green_46.improve_upper :
have ans := sorry;
ans =o[Filter.atTop] bestUpper ∧ maxY =O[Filter.atTop] ans
We conjecture that the best-known upper bound can be improved.
Best known lower bound: $y \gg x \frac{\log x \log \log \log x}{\log \log x}$ [Ra38].
Best known upper bound: $y \ll x^2$ [Iw78].