I have this sequence: $c_n = c_{n-1} + \frac{0.01}{n}, \ \ c_1 = 0.01$
How do I prove the convergence of this, and what is the limit?
Context
I was trying to solve the problem of a snail crawling on an elastic band being stretched. I wrote a small computer program to simulate this, and since a large number of iterations did not produce a large change, I wrongly guessed this would converge (also I was biased due to a discussion on the problem). I considered this a sequence, which was one of the reasons I got stuck in trying to prove this. As pointed out, I should have written it as a sum.
No limit exists since this is not convergent. Because $1/n > \ln(1+1/n)$ (because $e^x>1+x$ when $x>0$.) Then $\sum_{n=1}^k 1/n > \sum_{n=1}^k \ln(n+1)-\ln(n) = \ln(k+1)\to\infty$