Erdős problem 728
Whether there are infinitely many integers with such that divides while exceeds by more than .
Sources
FormalConjectures/ErdosProblems/
728.lean
Retained formal statement
Let be sufficiently small and . Are there integers such that and
Note that the website currently displays a simpler (trivial) version of this problem because isn't assumed to be in the regime.
Barreto and ChatGPT-5.2 have proved that, for any , there are infinitely many with , , and such that
This appears to answer the question in the spirit it was intended.
This was formalized in Lean by Alexeev using Aristotle.
True ↔ ∀ᶠ (ε : ℝ) in nhdsWithin 0 (Set.Ioi 0), ∀ C > 0, ∀ C' > C, ∃ a b n, 0 < n ∧ ε * ↑n < ↑a ∧ ε * ↑n < ↑b ∧ a.factorial * b.factorial ∣ n.factorial * (a + b - n).factorial ∧ ↑a + ↑b > ↑n + C * Real.log ↑n ∧ ↑a + ↑b < ↑n + C' * Real.log ↑n