Question Number
7
Project Euler Question

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?

Solution Found
True

File Status: Solution File found. Code from the function code_solution_7 will be used

Solution: 104743

Solution Code:

      <?php

  function code_solution_7() {
    $prime_list = get_n_primes(10001);

    return $prime_list[10000];
  }