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
Let and suppose that is such that, for any , there are at most solutions to where is prime and . Give the best possible upper bound for .
The order is known — ∑ 1/n = Θ_r(log N / loglog N) (see erdos_538.matching_order) — but the sharp constant is not. This asks whether maxMass r N has a well-defined leading constant c_r in c_r · log N / loglog N.
True ↔ ∀ (r : ℕ), 2 ≤ r → ∃ c, 0 < c ∧ Filter.Tendsto (fun N => Erdos538.maxMass r N * Real.log (Real.log ↑N) / Real.log ↑N) Filter.atTop (nhds c)OpenStatement only, no proof