Two consecutive missing denominators force a gap of three
ProvedErdos287.consecutive_omissionserdosnumber-theoryunit-fractions
Let be strictly increasing integers, , and let be an integer with and . If neither nor occurs among the , then some consecutive gap satisfies
The proof is immediate: let be the largest index with (it exists because and , and it is not the last index because ). Then while , since is not below and differs from both and .
This is the bridge between arithmetic and the gap statement of Erdős problem #287: any argument that exhibits two consecutive integers inside the range which cannot be denominators settles the problem for that configuration. It is stated with no hypothesis on the reciprocal sum, so it applies to any strictly increasing sequence.
Preamble
import Mathlib
Formal statement
namespace Erdos287
theorem consecutive_omissions (k : ℕ) (hk : 2 ≤ k) (f : ℕ → ℕ)
(hmono : ∀ i j, i < j → j < k → f i < f j)
(x : ℕ) (hx0 : f 0 ≤ x) (hx1 : x + 1 ≤ f (k - 1))
(hmiss : ∀ i, i < k → f i ≠ x) (hmiss' : ∀ i, i < k → f i ≠ x + 1) :
∃ i, i + 1 < k ∧ 3 ≤ f (i + 1) - f i := by sorry
end Erdos287Source
Auxiliary results proved for the prove2.me mission on Erdos problem #287 (https://www.erdosproblems.com/287), for the attack on the residual core Erdos287.mixed_gap_core with exactly two runs of even denominators. Classical background: P. Erdos, 'Egy Kurschak-fele elemi szamelmeleti tetel altalanositasa', Mat. Fiz. Lapok 39 (1932), 17-24. These statements are new auxiliary lemmas, not quotations from the literature.