Question: Creating a sequence using a list

Hi

I would like to be able to use a procedure in order to create a sequence using a list. Here is an example of what I am trying to achieve:

X = [1,3,4, 50,10]

T_n = 1 + sum^n_j=1 X_j

So T_1 = 1 + 1 = 2

T_2 = 1 + [1+3] = 5

T_3 = 1 +[1+3 +4] = 9

T_4 = 1 + [1+3+4+50] = 59

T_5 = 1+ [1+3+4+50+10] = 69

So my final list would be [2,5,9,59,69]

I am quite new to this forum so i was not sure how to create the Sum from j = 1 to n bit. I know the command for creating a summation but not in a procedure sense.

Please Wait...