Question: create a sequence of numbers within a vector in maple

Hi,

I want to create a sequence of numbers within a vector. For instance, I'd like for i from 1 to 4 to be the co-ordinates in a vector, ie [1,2,3,4]

 

This is what I have tried:

Vector([for i from 1 to 4 do i, end do];);

in hope of obtaining [1,2,3,4], but get error messages. Can anyone help?

Please Wait...