A prime denominator below a third of the range forces its double
ProvedErdos287.prime_forces_doublenumber-theoryp-adicunit-fractions
Let with . If a prime occurs as a denominator and , then also occurs as a denominator.
Indeed the multiples of not exceeding are only and , and the maximal -adic valuation among the denominators must be attained at least twice (Erdos287.padic_multiplicity); the second occurrence can only be .
This strictly generalises Erdos287.no_large_prime, which is the case where even is out of reach and the prime is therefore excluded outright. In the regime the lemma does not exclude but pins down a second denominator, of the opposite parity — which is exactly the leverage needed when the denominators are known to split into runs of constant parity.
Preamble
import Mathlib
Formal statement
namespace Erdos287
theorem prime_forces_double (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)
(p : ℕ) (hp : Nat.Prime p) (i : ℕ) (hi : i < k) (hfi : f i = p)
(hlt : f (k - 1) < 3 * p) :
∃ j, j < k ∧ f j = 2 * p := 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.