It is my understanding that a method for creating large primes is to:
- pick a random large number,
- check the number against trial division of a set of smaller prime numbers,
- check with something like Miller-Rabin
- if not prime increment by 2 and repeat
Is this method used in practice? And if so, does it matter that the method is biased towards primes that follow large gaps? How would you alter the method to make it more fair?