Random number generator tested:

fishman18
Minimum value: 0
Maximum value: 2147483646
Family: Linear Congruential
generator
Random number generator algorithms:
This is the Fishman, Moore III random number generator. It is taken from Knuth's Seminumerical Algorithms, 3rd Ed., pages 106-108. Its sequence is, xn+1 = (a xn) mod m with a = 62089911 and m = 231 - 1. The seed specifies the initial value, x1. Donald E. Knuth, " The Art of Computer Programming," Volume2 Third Edition, Addison-Wesley, 106--108.