Twin primes by Bakuriu

for x in xrange(3,2001):
\x09if 0 not in [x%y for y in xrange(2,x/2+1)] and 0 not in [(x+2)%k for k in xrange(2,x/2+1)]:print "%s,%s" % (x,x+2)

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page