I am looking for a formula that will allow me to apply one multiplier up to a certain sum and then a different multiplier after it hits that limit.

For example, I have a column of numbers 1, 3, 5, 7, 10. For the sum of the numbers until 10, I need to apply a multiplier of 2. All sums after 10, I need to apply a multiplier of 10.

In this case, I would like the responding column to read 2 (2*1), 6(2*3), 10(2*5), 62(2*1+6*10), 100 (10*10)

Thanks.