Skip to content

Instantly share code, notes, and snippets.

@michaje
Created April 4, 2013 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaje/5312038 to your computer and use it in GitHub Desktop.
Save michaje/5312038 to your computer and use it in GitHub Desktop.
>>> isprime(n**2-999*n+61)
False
>>> n=0
>>> while isprime(n**2-999*n+61): n+=1
...
>>> n
1011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment