Erdős Problem 1063 #
References:
- erdosproblems.com/1063
- [ErSe83] Erdos, P. and Selfridge, J. L., Problem 6447. Amer. Math. Monthly (1983), 710.
- [Gu04] Guy, Richard K., Unsolved problems in number theory. (2004), Problem B31.
- [Mo85] Monier (1985). No reference found.
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
Cambie observed the improved bound $n_k \le k \cdot \operatorname{lcm}(1, \dotsc, k - 1)$.
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.