Random sequence generator
A random sequence generator returns an ordered list of values, not a single draw. You set the kind of item, the length, and whether values may repeat, then you take the whole line.
How it works
One random value is a point. A sequence is a line of points in the order they were drawn. The page prints that line so you do not have to click once per item and hope your memory matches the room’s memory. Length is a setting. Kind is a setting: integers in a range are the usual kind on number pages. Replacement is a setting: may a value appear twice in the same line.
People type random number generator sequence when they want that line of numbers from a generator, rather than one lonely integer. The extra word “sequence” is the whole request. It means “give me the series.” It does not mean the generator became a different branch of mathematics. It still draws from the range you named. It only keeps going until the length is filled, and it shows the order.
Independent draws fill a sequence the way separate rolls of a die do. Repeats are allowed. The order is the history of those rolls. A different construction shuffles a finite set and prints the shuffled set. Repeats are then impossible until the set is exhausted. Both constructions are honest if you name them. They are not interchangeable when a classroom expected unique tickets.
A sequence is not one lucky number
Write the rules on the same line as the output. A list that says 7, 2, 9 with no range is a souvenir. A list that says 7, 2, 9 from 1 through 10, length 3, repeats allowed, is a specification. Tomorrow you will not remember the range. The saved line will.
Kind: integers, or another item type the page actually supports. Range or set: both ends, or the full list of members. Length: how many positions in the line. Repeats: allowed on a stream; forbidden on a shuffle of a set.
Order: keep the draw order, or sort after, which is a different object. Sorting after the draw is a real choice. A shuffled range that you then sort is no longer a random order. It is the set itself. If you needed a permutation, do not sort. If you needed a random subset and the order does not matter, sorting can make duplicates easy to see. Do not sort a raffle order and still call it the raffle order.
A random number sequence generator is the same tool under a longer name: numbers, in a sequence, from a generator. Use it for seating, for sample indexes, for a drill sheet, for shuffling ids in a test file. Do not use a toy page as a cryptographic key stream. A key stream is a different job with a different bar.
When people mean a shuffled range
Some pages, including the public service people look for with the query random org sequence generator, treat “sequence” as a permutation of a range: every integer from the lower end through the upper end appears once, in shuffled order. That is a deck, not a die. If you asked for 1 through 20, you should see twenty numbers, each used once. If you see a length you typed that is shorter than the span, you asked for a sample without replacement, not the full permutation. If you see repeats, you are not in permutation mode.
That shuffled-range reading is useful for “deal every ticket,” “order the students,” or “walk every id once.” It is the wrong reading if you wanted ten rolls of 1 through 6. Ten rolls of a six-faced die must allow repeats. A permutation of 1 through 6 can only be length six. Name the construction. The title on the tab will not do it for you.
One random number is a toss you can forget. A sequence is the tosses written down, which is the only reason anyone else can believe you. Project the rules, then the line, if a group has to live with the order. Paste both into a chat if the group is remote. A screenshot of numbers with no range is how a fairness argument begins. The generator will not testify later. The saved line can.
Questions and answers
- Can values repeat inside the sequence?
- Yes on a stream of independent draws. No on a shuffle of a set, until the set is empty.
- Is this the same as picking one number?
- No. One number is a single draw. A sequence is an ordered list with a length you set.
- What do people want from a RANDOM.ORG-style sequence?
- Usually a shuffled range: each integer in the span once, in a new order. Check that the page is in that mode.
Related guides
Address random generator
An address random generator builds a fake street line so you do not invent one by hand. Searches for random address generator, address generator random, and a New York variant still want a sample, not
Alphabet random generator
An alphabet random generator shuffles the letters of an alphabet into a new order. For English that is a permutation of A through Z, each letter once.
Animal generator random
An animal generator random pick is one animal name drawn from the tool’s list. Each click returns one animal from that list, not a living creature and not a complete catalog of Earth.