Concept Flow - GENERATE_SERIES for sequence creation
Start: Define start, stop, step
Call GENERATE_SERIES
Generate numbers from start to stop
Increment by step each time
Output each number as a row
Stop when next number > stop
End
GENERATE_SERIES creates a list of numbers starting at 'start', increasing by 'step', until it reaches or passes 'stop'. Each number is output as a row.