The following is the prompt I am working on:
Suppose you have an investment account which grows by 10% every year, and you want to, in perpetuity, withdraw an increasing amount of money from this account, starting with 1 dollar at the end of the first year, 2 dollars at the end of the second, 3 dollars at the end of the third, and so forth, withdrawing $n after n years.
a.) Taking a0 to be the initial balance in this account, produce a linear nonhomogeneous recurrence to describe the balance after n years (note that the nth year involves both increasing by the interest earned, and decreasing by the size of the withdrawal).
For the problem I got the following answer
$$B_n=(1.1*B_{n-1}) -n$$
b)Solve the recurrence above, putting the answer in terms of the initial balance a0.
This is where I am struggling. I believe this is a nonhomogeneous recurrence relation that I need to find. But in almost all the examples I have worked so far, the non homogeneous part has a exponent. The issue could also be that the answer to a is incorrect, which would make any attempt at b incorrect.