/-
Copyright 2025 The Formal Conjectures Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-/
module
public import FormalConjecturesUtilErdős Problem 1093
Reference: erdosproblems.com/1093
@[expose] public sectionnamespace Erdos1093open Finset NatIf defined, the deficiency is the count of $0 \le i < k$ such that $n - i$ is $k$-smooth, that is, divisible only by primes $\le k$.
Nat.smoothNumbers m is the set of positive naturals all of whose prime factors are
$< m$, so "$k$-smooth" in the sense above is Nat.smoothNumbers (k + 1).
noncomputable def deficiency (n k : ℕ) : ℕ :=
#{i ∈ range k | n - i ∈ smoothNumbers (k + 1)}Are there infinitely many binomial coefficients with deficiency 1?
@[category research open, AMS 5]
theorem erdos_1093.parts.i :
answer(sorry) ↔ {x : ℕ × ℕ | let k := x.1; let n := x.2; 2 * k ≤ n ∧ deficiency n k = 1 ∧
∀ p, p.Prime → (p ∣ choose n k) → k < p}.Infinite := ⊢ True ↔
{x |
let k := x.1;
let n := x.2;
2 * k ≤ n ∧ deficiency n k = 1 ∧ ∀ (p : ℕ), Nat.Prime p → p ∣ n.choose k → k < p}.Infinite
All goals completed! 🐙Are there only finitely many binomial coefficients with deficiency > 1?
@[category research open, AMS 5]
theorem erdos_1093.parts.ii :
{x : ℕ × ℕ | let k := x.1; let n := x.2; 2 * k ≤ n ∧ deficiency n k > 1 ∧
∀ p, p.Prime → (p ∣ choose n k) → k < p}.Finite := ⊢ {x |
let k := x.1;
let n := x.2;
2 * k ≤ n ∧ deficiency n k > 1 ∧ ∀ (p : ℕ), Nat.Prime p → p ∣ n.choose k → k < p}.Finite
All goals completed! 🐙end Erdos1093