Generate List of Numbers

Generate a list of numbers with range and step.

Overview

Enter start, end and step to generate a list. For example: start 1, end 10, step 2 gives 1, 3, 5, 7, 9.

Tips: Use decimal step (e.g. 0.5) for non-integer sequences.

FAQ

Step is the increment between consecutive numbers. Step 1 gives every integer; step 0.5 gives halves; negative step goes from start down to end.