Quick Answer: A random number seed is the initial value given to a PRNG algorithm. The same seed always produces exactly the same sequence of "random" numbers. Seeds enable reproducibility — researchers, game developers, and testers use known seeds to reproduce specific random sequences reliably.
How Seeds Work
A Pseudo-Random Number Generator (PRNG) is a deterministic algorithm — given identical inputs, it produces identical outputs. The seed is the starting input. Once seeded, the PRNG produces a sequence that appears random but is fully determined by the seed. Change the seed by even one bit and the entire sequence changes completely.
Why Seeds Enable Reproducibility
Scientific research critically needs reproducibility. If a simulation uses random numbers with a known seed, any researcher can reproduce the identical simulation run just by using the same seed. This is essential for peer review — other scientists must be able to reproduce published results independently.
Seeds in Gaming
Procedural games like Minecraft use seeds for world generation. The same seed produces the identical world on any device, any time. Seeds are shareable — discovering a seed for a world with favorable geography or resources is a key part of the Minecraft and other procedural game communities. Speedrunners select specific seeds for favorable starting conditions.
Why PickRandom.online Does Not Use Seeds
PickRandom.online intentionally does not use fixed seeds. Every generation uses fresh entropy from the Web Crypto API — ensuring that results cannot be predicted or reproduced by anyone. For fair selection, giveaways, and privacy tools, reproducibility is a security vulnerability, not a feature. CSPRNG rejects fixed seeds in favor of continuous hardware entropy.