Error Messages/42616
Error message
A «step» increment of zero was specified to function Sequence.
Cause
This message occurs when you try something like:
Sequence(1, 10, 0)
A zero step increment doesn't make sense since the sequence would never reach its destination -- you would have just [1, 1, 1, 1, 1,....]
forever.
Remedy
The value of the «step» parameter must be positive, or if the «strict» parameter is true, it must be non-zero.
See Also
Comments
Enable comment auto-refresher