Fold

WMA link


Fold[f, x, list]

returns the result of iteratively applying the binary
operator f to each element of list, starting with x.

Fold[f, list]

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

FixedPointList
FoldList