FoldList

WMA link


FoldList[f, x, list]

returns a list starting with x, where each element is
the result of applying the binary operator f to the previous
result and the next element of list.

FoldList[f, list]

is equivalent to FoldList[f, First[list], Rest[list]].

Fold
Nest