Erdős Problem 287: some gap between the denominators is at least three
OpenErdos287.max_gap_ge_threeegyptian-fractionsnumber-theoryopen-problemunit-fractions
Let and let be integers with
Then some consecutive difference is at least three:
This is the OPEN conjecture of Erdős Problem 287, not a claimed proof. The example , whose differences are and , shows that the constant three is best possible. The weaker bound with two in place of three is classical.
Formalization note. The increasing tuple is presented as a function on the window , with 1 < f i and strict monotonicity imposed only there; the values of outside the window are unconstrained and unused. The subtraction is natural-number subtraction, which cannot truncate because is increasing on the window.
Preamble
import Mathlib
Formal statement
namespace Erdos287
theorem max_gap_ge_three (k : ℕ) (hk : 2 ≤ k) (f : ℕ → ℕ)
(hf1 : ∀ i, i < k → 1 < f i)
(hmono : ∀ i j, i < j → j < k → f i < f j)
(hsum : ∑ i ∈ Finset.range k, (1 : ℚ) / f i = 1) :
∃ i, i + 1 < k ∧ 3 ≤ f (i + 1) - f i := by sorry
end Erdos287Source
Erdős Problem 287, https://www.erdosproblems.com/287; P. Erdős and R. L. Graham, Old and new problems and results in combinatorial number theory, Monographies de L'Enseignement Mathématique (1980), p. 33; Various, Some of Paul's favorite problems (Budapest, July 1999), item 1.15.
Human review
Confirmed by the mission captain (proposal self-audit).