Documentation

FormalConjectures.ErdosProblems.«1063»

Erdős Problem 1063 #

References:

noncomputable def Erdos1063.n (k : ) :

Let $n_k$ be the least $n \ge 2k$ such that all but one of the integers $n - i$ with $0 \le i < k$ divide $\binom{n}{k}$.

Equations
Instances For
    theorem Erdos1063.erdos_1063.variants.exists_exception {n k : } (hk : 2 k) (h : 2 * k n) :
    i < k, ¬n - i n.choose k

    Erdős and Selfridge noted that, for $n \ge 2k$ with $k \ge 2$, at least one of the numbers $n - i$ for $0 \le i < k$ fails to divide $\binom{n}{k}$ ([ErSe83]).

    The initial values satisfy $n_2 = 4$, $n_3 = 6$, $n_4 = 9$, and $n_5 = 12$ ([Gu04], Problem B31).

    Monier observed that $n_k \le k!$ for $k \ge 3$ ([Mo85]). TODO: Find reference

    Cambie observed the improved bound $n_k \le k \cdot \operatorname{lcm}(1, \dotsc, k - 1)$.

    theorem Erdos1063.erdos_1063.variants.exp_upper_bound :
    ∃ (f : ), Filter.Tendsto f Filter.atTop (nhds 0) ∀ (k : ), (n k) Real.exp ((1 + f k) * k)

    The least common multiple bound implies $n_k \le \exp((1 + o(1))k)$.

    theorem Erdos1063.erdos_1063.better_upper :
    have upper_bound := sorry; (fun (k : ) => (n k)) =O[Filter.atTop] upper_bound upper_bound =o[Filter.atTop] fun (k : ) => k * (Finset.Icc 1 (k - 1)).lcm fun (n : ) => n

    Estimate $n_k$ by finding a better upper bound.