Documentation

FormalConjectures.ErdosProblems.«340»

Erdős Problem 340 #

Reference: erdosproblems.com/340

def greedySidon (n : ) :

greedySidon is the sequence obtained by the initial set $\{1\}$ and iteratively obtaining then next smallest integer that preserves the Sidon property of the set. This gives the sequence 1, 2, 4, 8, 13, 21, 31, ....

Equations
Instances For
    theorem erdos_340 (ε : ) (hε : ε > 0) :
    (fun (n : ) => n / n ^ ε) =O[Filter.atTop] fun (n : ) => (Set.range greedySidon Set.Icc 1 n).ncard

    Let $A = \{1, 2, 4, 8, 13, 21, 31, 45, 66, 81, 97, \ldots\}$ be the greedy Sidon sequence: we begin with $1$ and iteratively include the next smallest integer that preserves the Sidon property (i.e. there are no non-trivial solutions to $a + b = c + d$). What is the order of growth of $A$? Is it true that $| A \cap\{1, \ldots, N\}| \gg N^{1/2−\varepsilon}$ for all $\varepsilon > 0$ and large $N$?

    theorem erdos_340.variants.isTheta (ε : ) (hε : ε > 0) :

    Let $A = \{1, 2, 4, 8, 13, 21, 31, 45, 66, 81, 97, \ldots\}$ be the greedy Sidon sequence: we begin with $1$ and iteratively include the next smallest integer that preserves the Sidon property (i.e. there are no non-trivial solutions to $a + b = c + d$). What is the order of growth of $A$? Is it true that $| A \cap\{1, \ldots, N\}| \gg N^{1/2−\varepsilon}$ for all $\varepsilon > 0$ and large $N$?

    theorem erdos_340.variants.third (ε : ) (hε : ε > 0) :
    (fun (n : ) => n ^ (1 / 3)) =O[Filter.atTop] fun (n : ) => (Set.range greedySidon Set.Icc 1 n).ncard

    It is trivial that this sequence grows at least like $\gg N^{1/3}$.

    Erdős and Graham [ErGr80] also asked about the difference set $A - A$ and whether this has positive density.

    [ErGr80] Erdős, P. and Graham, R., Old and new problems and results in combinatorial number theory. Monographies de L'Enseignement Mathematique (1980).

    It may be true that all or almost all integers are in $A - A$.

    It may be true that all or almost all integers are in $A - A$.