Example #1
0
from Useful import phi, get_primes ,gcd


count = 0
for n in xrange(1, 1000001/2):
    if gcd(1000001-n,n) == 1:
        count += 1
print count/2
Example #2
0
from Useful import gcd
import math

##unsure of how to finish
L = 1500
G = []
sl = int(L**.5)
count = 0
for m in range(2,sl,1):
    for n in range(1, m,1):
        if not (m - n) % 2:
            continue
        if gcd(m,n) == 1:
            a = m**2 - n**2
            b = 2*m*n
            c = m**2 + n**2
            p = a+b+c
            for k in range(1, L/p ):
                if k*p not in G:
                    G.append(k*p)
                    count += 1
                else:
                    count -=1
print count
Example #3
0
def phi(n):
    p = 0
    for i in xrange(n):
        if gcd(n,i) == 1:
            p += 1
    return p