Erdős problem 538
If each integer has at most representations with prime and , what is the best upper bound for ? The candidate proof gives the matching order .
Sources
FormalConjectures/ErdosProblems/
538.lean
Retained formal statement
The reciprocal sum has matching order Θ_r(log N / loglog N): an explicit upper bound for every admissible A, together with a witnessing construction achieving the same order. This pins the order (up to the one iterated-logarithm factor) but not the sharp constant asked for in erdos_538.
∀ (r N : ℕ), 2 ≤ r → 2 ≤ N → (∀ (A : Finset ℕ), Erdos538.Admissible r N A → Real.log (Real.log (↑N + 1)) * ↑(Erdos538.reciprocalMass A) ≤ 2 * ↑r * (1 + Real.log (↑N * ↑N))) ∧ ∃ A, Erdos538.Admissible r N A ∧ Real.log (↑N + 1) ≤ 4 + 8192 * (↑(Nat.log 2 (Nat.log 2 N)) + 1) * ↑(Erdos538.reciprocalMass A)