euler/e003.py
Correl Roush f151766af6 Wrap executable code so it can be used a library
git-svn-id: file:///srv/svn/euler@35 e5f4c3ec-3c0c-11df-b522-21efaa4426b5
2010-04-12 15:53:14 +00:00

13 lines
290 B
Python

def pfactor(n):
i = 2
while (n % i != 0 and i < n):
i = i + 1
if i == n:
return [n]
p = pfactor(n // i)
p.append(i)
return sorted(p, reverse=True)
if __name__ == '__main__':
print 'Prime factors of 600851475143:'
print pfactor(600851475143)