Question: A little problem

When using the command "for", the results are placed in a column,such as if we input
for i from 1 to 3 do  i end do, the results are showed as

1

2

3.

This style is not convient to use for following computation. So how to put all results into a list or set ?

Please Wait...