Last active
December 16, 2015 17:40
-
-
Save st0le/5472016 to your computer and use it in GitHub Desktop.
Lucas Lehmer Primality Test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def lucasLehmerTest(p): #checks if 2^p - 1 is a prime (also called a mersenne prime) | |
if p % 2 == 0 and not isPrime(p): return False | |
s = 4 | |
M = (1 << p) - 1 | |
for _ in xrange(p - 2): | |
s = ((s * s) - 2) % M | |
return s == 0 | |
def isPrime(n): | |
if n <= 3 or n % 2 == 0 or n % 3 == 0: return n == 2 or n == 3 | |
for i in xrange(5, int(n**0.5)+1, 6): | |
if n % i == 0 or n % (i + 2) == 0: | |
return False | |
return True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment