numtheory(deprecated)
mersenne
nth Mersenne prime
Calling Sequence
Parameters
Description
Examples
mersenne(n)
mersenne([i])
n, i
-
positive integers
Important: The numtheory package has been deprecated. Use the superseding commands NumberTheory[IthMersenne], NumberTheory[IsMersenne] instead.
The function mersenne computes Mersenne primes. If the argument n is an integer then mersenne(n) will return 2n−1 if 2n−1 is known to be prime. Otherwise, if n is prime, but 2n−1 is not determinably prime, then mersenne(n) will return FAIL. Finally, if n is composite it will return false.
If the argument is a list with one integer element [i], then mersenne([i]) will return the ith Mersenne prime. If the value is beyond Maple's precomputed list of Mersenne primes, an error will be issued.
The command with(numtheory,mersenne) allows the use of the abbreviated form of this command.
with⁡numtheory:
mersenne⁡3
7
31
mersenne⁡4
false
mersenne⁡224737
mersenne⁡756853
See Also
NumberTheory[IsMersenne]
NumberTheory[IthMersenne]
numtheory(deprecated)[fermat]
Download Help Document