Ejemplo n.º 1
0
Archivo: 49.py Proyecto: fx8848/code
from euler import is_prime, is_perm
 
n = 1489 	# must be odd
while True:
  b, c = n+3330, n+6660
  if is_prime(n) and is_prime(b) and is_prime(c) \
    and is_perm(n,b) and is_perm(b,c): break
  n += 2
 
print "Answer to PE49 = ", str(n)+str(b)+str(c)
Ejemplo n.º 2
0
from euler import is_perm, is_prime

max1=0

for i in xrange(7654322):
        if is_perm(i,1234567) and is_prime(i):
            if i > max1:
                max1=i

print max1