Is there a function which will return the approximate value of the nth prime? I think this would be something like an approximate inverse prime counting function. For example, if I gave this function 25 it would return a number around 100, or if I gave this function 1000 it would return a number around 8000. I don't care if the number returned is prime or not, but I do want it to be fast (so no generating the first n prime numbers to return the nth.)
(Before somebody says this isn't programming related, let me suggest a use. If you want to generate the first n prime numbers using a sieve (Eratosthenes or Atkin) you need to know what number to generate primes up to. While it is possible to generate additional primes after finding all primes up to some number (this is at least possible using the sieve of Eratosthenes), it is better to do it all at once. If somebody still thinks this isn't programming related, they can tell me how to implement this function :-) )
