previous | index | next

Creating Arbitrarily Long Lists of Numbers

Suppose we want to create the list
          (1 2 3 ... 2000)
or
          (13 14 15 ... 37)
Both have the form
          (low low+1 low+2 ... high-1 high)

previous | index | next