Erdős problem 154
Let be a Sidon set with . Must be well-distributed over all small moduli? In particular, must about half the elements of be even and half odd?
Sources
FormalConjectures/ErdosProblems/
154.lean
Retained formal statement
Lindström's result for itself [Li98], later strengthened by Kolountzakis [Ko99]: for any sequence of Sidon sets with and , and any modulus , the number of elements of congruent to , divided by , tends to for every residue .
Well-distribution of (the actual question, erdos_154) follows from this using the Sidon property.
∀ (m : ℕ), 2 ≤ m → ∀ (N : ℕ → ℕ) (A : ℕ → Finset ℕ), Filter.Tendsto (fun k => ↑(N k)) Filter.atTop Filter.atTop → (∀ (k x : ℕ), x ∈ A k → x ≤ N k) → (∀ (k : ℕ), IsSidon ↑(A k)) → Filter.Tendsto (fun k => ↑(A k).card / √↑(N k)) Filter.atTop (nhds 1) → ∀ i < m, Filter.Tendsto (fun k => ↑{a ∈ A k | a % m = i}.card / √↑(N k)) Filter.atTop (nhds (1 / ↑m))