Skip to content
MyDailyTool

Number Sequence Generator

Expand range patterns like 1..100 or 0,2,4..20 into complete numeric lists. Supports step size, comma-separated output, and custom separators — great for test data and scripting.

20 items

How to use the number sequence generator

Patterns: 1..20 (range, step 1), 1..2..20 (start..step..end), 0,2,4..20 (literals + range that infers step).

Formula & explanation

Sequences expand to at most 100,000 items.

Examples

1..10 → 1,2,…,10. 0,2,4..20 → all even numbers 0–20. 100..-10..0 → 100, 90, …, 0.

Frequently asked questions

How do I generate a list of even numbers?
Use a pattern like 0,2,4..100 — the tool infers the step of 2 from the first two literals and continues to 100.
Can I generate a descending sequence?
Yes — use a negative step: 100..-10..0 produces 100, 90, 80, …, 0.
How do I change what separator appears between numbers?
Edit the Separator field; it defaults to ', ' but you can use a newline, tab, pipe, or any string.
What is the maximum sequence length?
The generator stops at 100,000 items to prevent browser freezes. For very large sequences, generate in chunks.

Related list tools tools