I have a recursive sequence where the first element is $a_{1} = 1$ and then $a_{n+1}= \frac12a_{n} + \frac{1}{n+1}$.
The first three terms are $a_{1} = 1 > a_{2} = \frac56 > a_{3} = \frac23$ so it seems reasonable to try to prove that the sequence is decreasing and then use the monotonicity of the sequence to try to prove that it has a finite or infinite limit. (This is my usual approach to recursive sequences.)
However, I don't know how to deal with the term $\frac1{n+1}$. Clearly $\lim \frac1{n+1} = 0$, but I don't know if I can erase it and solve $a_{n+1} = \frac12 a_{n} < \frac12 a_{n-1} = a_{n}$ to prove the monotonicity.
Lemma: $a_n>{2\over n+1}$ for all $n \geq 2$
Base case: $a_2=1>{2\over3}$
Inductive process: $a_n>{2\over n+1}\implies a_{a+1}>{1\over n+1}+{1\over n+1}>{2\over n+2}$
Hence by induction the lemma is proven.
Now applying the lemma $a_{n+1}<\frac12a_{n}+\frac12a_{n}=a_n$ hence the sequence is decreasing. QED.