Is there a faster way to find the prime factors of 600851475143?
My computer still has not been able to produce an answer. Here's my code:
import sympy
num = 600851475143
list(filter(lambda x: sympy.isprime(x) and num % x ==0,range(2,600851475143 +1))