To preface this, it's been years since my last calc class, but I feel like this is lower level than that. I am looking for the notation for an equation that sums up the values of the same equation iterated several times, while carrying the last result through the "new" iteration.
I am a programmer at heart, so using "for" statements seems to accomplish this pretty easy, but I need an equation that represents it as well.
So here's the idea: Let's say that we start with 500 people in a church, and over the course of 2 years we assume that each one of those people bring 2 more people who become members which gives you a new church population of 1500, then iterate it again until 6 years have passed.
By the end you should have 13,500 members. It's funny that it's so easy to do in your head, but for the life of me I have no idea how to represent this in an equation. I have tried using a summation to represent the equation using x=2x+x, but I can't figure out how to "notate" x equaling the value of the last iteration with each "new" iteration.
Does this make any sense? I am probably completely wrong trying to use summation notation to do this, but I don't what else to try.
Thanks for any advice.