I wanted to find the closed form of the recursion: $$a_n = \frac{1}{n+1} + \frac{n-1}{n+1} a_{n-1}$$ where $a_0 = 0$.
So far, my progress has been to multiply both sides by $\frac{n(n+1)}{2}$ which gives $$\frac{n(n+1)}{2} a_n = \frac{n}{2} + \frac{n(n-1)}{2} a_{n-1}.$$
Now, if we let $b_n = \frac{n(n+1)}{2} a_n$, the recursion becomes: $$b_n = \frac{n}{2} + b_{n-1}.$$
How do I continue on from here? I feel like I have to figure out a closed form for $b_n$ and use that to compute $a_n$, but I can't seem to figure out a way to do so.
Any help would be greatly appreciated.