This is a continuation of another question about efficiently getting quasi-random numbers.
I need to get N unique quasi-random numbers, bias/distribution quality is no big deal. Can I get them more CPU/time-efficiently than using N calls to rand() or /dev/random etc? Maybe using some math/bitwise manipulations on few random numbers or something like that. Or using precomputed tables or...
N can be quite big like 10000 or 1000000.
Thanks.