Last active
April 17, 2018 13:40
-
-
Save eliannelavoie/ed400a19b180b07f19b994fade0908e4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from math import sqrt | |
from itertools import combinations | |
def isP(n): | |
return (1/6*(sqrt(24*n+1)+1)).is_integer() | |
p = [n*(3*n-1)/2 for n in range(1,2500)] | |
for x in combinations(p, 2): | |
if (isP(x[0]+x[1]) and isP(x[1]-x[0])): | |
print(x) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment