I am looking for the exponential function that describes the following behavior:
Start at the value 1. The next value of the sequence is calculated by the following formula:
Value of Previous + Value of Previous * (1/3)
The idea is that this is experience in a video game, where each level is harder to obtain than the last. Meaning the sequence would be:
1, 4/3, 16/9, 64/27 ...
After starring at this for so long, I couldn't think the equation to do it. It obviously needs to be an exponential function but I thought for sure I'd need to write 1/3 somewhere in the correct form.
The actual answer to this is (3/4)^(1-n) but I do not understand how I could have came to that conclusion if I didn't use Wolfram Alpha's Pattern Finder.
How can this be solved? I have to approach these kind of patterns all the time in my programming works and I rely on the Wolfram tool far too often.