I'm looking for non-magic prime numbers (ones that are very clearly not arbitrarily hand-picked) to use in a python library. Right now, I'm using mersenne primes, but I need one prime that is at least slightly larger than $2^{256}$ (at least $256$ bits), and there are no mersenne primes even remotely close.
What is the best way to find such a prime? Are there other famous lists of primes I should look into other than mersenne primes? Are there good published lists available of prime numbers? What is the best way to test if an extremely large number is a prime number?