A Mersenne prime is a prime number of the form $2^p-1$.
Equations
- Mersenne.Nat.GivesMersennePrime p = Nat.Prime (2 ^ p - 1)
Instances For
A natural number p satisfies the statement of the New Mersenne Conjecture if whenever
two of the following conditions hold,
then all three must hold:
- $2^p-1$ is prime
- $(2^p+1)/3$ is prime
- Exists a number
ksuch that $p = 2^k \\pm 1$ or $p = 4^k \\pm 3$
Equations
- One or more equations did not get rendered due to their size.
Instances For
For any odd natural number p if two of the following conditions hold,
then all three must hold:
- $2^p-1$ is prime
- $(2^p+1)/3$ is prime
- Exists a number
ksuch that $p = 2^k \\pm 1$ or $p = 4^k \\pm 3$
theorem
Mersenne.new_mersenne_conjecture_of_prime :
(∀ (p : ℕ), Nat.Prime p → NewMersenneConjectureStatement p) → ∀ (p : ℕ), Odd p → NewMersenneConjectureStatement p
It suffices to check this conjecture for primes
Are there infinitely many Mersenne primes?