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?
Looks like I used the same algorthim as Problem 6 to generate the primes. This is very inefficient. Takes way too looking Using sieve, I can produce one million primes in milliseconds But for now, this is fine. Again, I was beginning to learn Python and wasn't sure of the implementation of Sieve...
Answer: 104743
Runtime: 8.4 seconds