Oppermann's Conjecture
Exact formalization occurrence from the upstream source collection.
- Source category
- research open
- Formal proof
- Not retained
- Vela current state
- No Repository Result attached
Question
For every integer , the following hold:
- There exists a prime between and .
- There exists a prime between and .
Lean declaration
Open source viewtheorem oppermann_conjecture (x : ℕ) (hx : 2 ≤ x) :
(∃ p ∈ Ioo (x * (x - 1)) (x^2), p.Prime) ∧
(∃ p ∈ Ioo (x^2) (x * (x + 1)), p.Prime)