A cumulative product is a sequence of partial products of a given sequence. For example, the cumulative products of the sequence {a, b, c, ...}, are a, a b, a b c, .... Cumulative products can be implemented in the Wolfram Language as Rest[FoldList[Times, 1, list]]