Question:medium

A company adds storage: (2^4) TB (1st month), (2^5) (2nd), (2^6) (3rd)... Total additional storage from 4th to n-th month is:

Show Hint

The sum of powers of 2 (starting from (2^0)) is always (2^{text{next power}} - 1). Adjusting the start point simply subtracts the missing initial terms.
Updated On: Apr 19, 2026
  • (2^n - 2^4)
  • (2^{n+1} - 2^4)
  • (2^n - 16)
  • (2^{n+1})
Show Solution

The Correct Option is B

Solution and Explanation

Was this answer helpful?
0