Erdős problem 931
Let . Are there only finitely many such that have the same prime factors?
Sources
FormalConjectures/ErdosProblems/
931.lean
Retained formal statement
Erdős was unable to prove that if the two products have the same factors then there must exist a prime between and .
∀ (k₁ k₂ n₁ n₂ : ℕ), k₂ ≤ k₁ → 3 ≤ k₂ → n₁ + k₁ ≤ n₂ → (∏ i ∈ Finset.Icc 1 k₁, (n₁ + i)).primeFactors = (∏ j ∈ Finset.Icc 1 k₂, (n₂ + j)).primeFactors → ∃ p, Nat.Prime p ∧ n₁ ≤ p ∧ p ≤ n₂OpenStatement only, no proof