Erdős problem 239
Let be a multiplicative function. Is it true that always exists?
Sources
FormalConjectures/ErdosProblems/
239.lean
Retained formal statement
Let be a multiplicative function. Is it true that always exists?
The answer is yes, as proved by Wirsing [Wi67], and generalised by Halász [Ha68].
True ↔ ∀ (f : ℕ → ℝ), (∀ n ≥ 1, f n = 1 ∨ f n = -1) ∧ (∀ (m n : ℕ), m.Coprime n → f (m * n) = f m * f n) ∧ f 1 = 1 → ∃ L, Filter.Tendsto (fun N => (∑ n ∈ Finset.Icc 1 N, f n) / ↑N) Filter.atTop (nhds L)SolvedStatement only, no proof