Sequence()

This command is not only for constructing sequence of numbers but also for constructing sequence of objects.
In computational meaning, Sequence() is the function for constructing "list" data structure.[br]In mathematical meaning, Sequece() is the function for constructing finite orderd set.[br][br][code]Sequence( <End Value> )[br]Sequence( <Start Value>, <End Value> )[br]Sequence( <Start Value>, <End Value>, <Increment> )[br]Sequence( <Expression>, <Variable>, <Start Value>, <End Value> )[br]Sequence( <Expression>, <Variable>, <Start Value>, <End Value>, <Increment> )[/code]

Information: Sequence()