ARITHM-SER

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - begin begin [default = 0]
  - end end [default = 10]
  - step step [default = 1]
&optional
 
  - nummax nummax [default = 536870911]

Description:

Arithmetic series: returns a list of numbers from <begin> to <end> with increment of <step>.
<nummax> allows to limit the number of elements returned.

Ex. (arithm-ser 1 5 0.5) => (1 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0)