show/hide this revision's text 4 added 107 characters in body

A binary search isn't going to be wonderful for this data, since the first half of the primes are going to be closer to each other than the last half of them.

You might be able to improve on your search by knowing how many primes there are under x. Maybe skew the cut by using the approximation mentioned in the link.


My first try would be this. I'd have two arrays.

  1. An array of all the primes.
  2. An array that tells me where in the first array the first prime above 1000*n was. So if I wanted to find the first prime with a value of 5000 or more, I'd look at secondArray[5000/1000-1].

I'd get a rough position with array 2 before doing anything with array 1.

show/hide this revision's text 3 deleted 4 characters in body; added 69 characters in body

A binary search isn't going to be wonderful for this data, since the first 500k half of the primes are going to be closer to each other than the last 500k primeshalf of them.

You might be able to improve on your search by knowing how many primes there are under x. Maybe skew the cut by using the approximation mentioned in the link.


My first try would be this. I'd have two arrays.

  1. An array of all the first 1,000,000 primes.
  2. An array that tells me where in the first array the first prime above 1000*n was.

I'd get a rough position with array 2 before doing anything with array 1.

show/hide this revision's text 2 added 268 characters in body

A binary search isn't going to be wonderful for this data, since the first 500k primes are going to be closer to each other than the last 500k primes.

You might be able to improve on your search by knowing how many primes there are under x.


My first try would be this. I'd have two arrays.

  1. An array of the first 1,000,000 primes.
  2. An array that tells me where in the first array the first prime above 1000*n was.

I'd get a rough position with array 2 before doing anything with array 1.

show/hide this revision's text 1