Erdős problem 299
Is there an infinite sequence such that and no finite sum of is equal to 1?
Sources
FormalConjectures/ErdosProblems/
299.lean
Retained formal statement
Is there an infinite sequence such that and no finite sum of is equal to 1?
There does not exist such a sequence, which follows from the positive solution to [erdosproblems.com/298] by Bloom [Bl21].
This was formalized in Lean 3 by Bloom and Mehta.
False ↔ ∃ a, StrictMono a ∧ (∀ (n : ℕ), 0 < a n) ∧ (fun n => ↑(a (n + 1)) - ↑(a n)) =O[Filter.atTop] 1 ∧ ∀ (S : Finset ℕ), ∑ i ∈ S, 1 / ↑(a i) ≠ 1