Project Euler
Problem 7: 10,001st Prime

By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.

What is the 10,001st prime number?



Runtime: 0
Average: 0 Runs: 0
SD: 0 ms
Max: 0
Min: 1000

Trial division all day.

I run through the odd numbers trial dividing up to the square root of the number I'm testing. I stop when I get to my target prime.