Erdős problem 845
Let . Is it true that the set of integers of the form , with , where for and has density ?
Sources
FormalConjectures/ErdosProblems/
845.lean
Retained formal statement
Let . Is it true that the set of integers of the form , with , where for and has density ?
van Doorn and Everts [vDEv25] have disproved this with - in fact, they prove that all integers can be written as such a sum in which .
This was formalized in Lean by Alexeev using Aristotle.
False ↔ ∀ (C : ℝ), 0 < C → have f := fun x => match x with | (k, l) => 2 ^ k * 3 ^ l; {x | ∃ B, ∃ (h : B.Nonempty) (_ : ↑(B.sup f) ≤ C * ↑(B.inf' h f)), ∑ x ∈ B, f x = x}.HasDensity 0