Erdős problem 164
A set is primitive if no member of divides another. Is the sum maximised over all primitive sets when is the set of primes?
Sources
FormalConjectures/ErdosProblems/
164.lean
Retained formal statement
A set is primitive if no member of divides another. Is the sum maximised over all primitive sets when is the set of primes?
Erdős [Er35] proved that this sum always converges for a primitive set. Lichtman [Li23] proved that the answer is yes. An alternative, simpler, proof is given by Alexeev, Barreto, Li, Lichtman, Price, Shah, Tang, and Tao [ABLLPSTT26].
True ↔ ∀ (A : Set ℕ), (∀ a ∈ A, 2 ≤ a) → Erdos1196.IsPrimitive A → ∑' (a : ↑A), 1 / (↑↑a * Real.log ↑↑a) ≤ ∑' (p : ↑{p | Nat.Prime p}), 1 / (↑↑p * Real.log ↑↑p)