Can you complete below number series by replacing "?" with the correct number.

10 # 10 # 20 # ? # 110 # 300 # 930

45

Pattern goes like
10
10 * 0.5 + 5 => 10
10 * 1.0
+ 10 => 20
20 * 1.5 + 15 => 45(Ans)
45 * 2.0 + 20 => 110
110 * 2.5 + 25 => 300
300 * 3.0 + 30 => 930