Is there a systematic scheme for identifying primes? For small numbers, it is easy to simply reproduce the whole prime, but for larger numbers, it seems like it could get cumbersome.
For instance, one could instead refer to the "$n$th" prime, but this is not much better since I suspect $n$ will also grow very quickly. It may also be the case that you know a number $x$ is a prime, but don't know how many primes are smaller than $x$.
Is there some sort of catalog of primes, which provides unique identifiers for each one?
There is no known simple and fast method for determining the $n$th prime, or as you astutely rephrased the problem, for determining the number of primes smaller than a given integer $x$.
– Barry Smith Jul 14 '15 at 02:21
– Barry Smith Jul 14 '15 at 02:23Simple methods for computing the $n$th prime that are quite slow when $n$ becomes large
Faster methods for approximately computing the $n$th prime.