i am solving some reccurence relations and I am getting lost and not sure where to go I have $$T(n)=T(n-1)+ 1/7^{(n-1)}\quad \text{ where } T(1)=1$$ Which I tried solving with something like this
T(1)=1
T(2)=T(1) + 1/7^(1)
T(3)=T(2) + 1/7^(2)
..
T(k)=T(n) + 1/7^(k)
I probably didnt completely understand how to solve it or I did something wrong. Couldnt find similar cases like these on the internet except for few where it is not well explained.
Please help me understand how to solve this case asymptotically and accurately.
Thank you