Erdős problem 123
Let be pairwise coprime integers. Is every large integer a sum of distinct numbers of the form (), none dividing another?
Sources
FormalConjectures/ErdosProblems/
123.lean
Retained formal statement
Let be three integers which are pairwise coprime. Is every large integer the sum of distinct integers of the form (), none of which divide any other?
Equivalently: is the set d-complete?
Note: For this not to reduce to the two-integer case, we need the integers to be greater than one and distinct.
The prize of 250 is offered by Erdős in [Er97] and [Er97e] for a 'proof or disproof'.
The main problem was resolved in the affirmative by GPT 5.6 (prompted by Snyder).
This was formalized in Lean by Alexeev.
True ↔ ∀ a > 1, ∀ b > 1, ∀ c > 1, Erdos123.PairwiseCoprime a b c → Erdos123.IsDComplete (↑(Submonoid.powers a) * ↑(Submonoid.powers b) * ↑(Submonoid.powers c))