Given the recurrence relation $b_{1}=0$ and $$3b_{n+1} = \frac{b_{n}}{12} + \sqrt{\frac{17+b_{n}^{2}}{12}}$$
Show that this recurrence relation is increasing.
Note $36b_{n+1} = b_{n} + \sqrt{204+12b_{n}^{2}}$
So I have started as such:
I have found and proven $0\le b_{n}<1, \quad \forall n\ge1$. Thus
\begin{align} 36b_{n+1} - 36b_{n} &= \sqrt{204+12b_{n}^{2}} - 35b_{n} \\ &= \frac{204+12b_{n}^{2}-1225b_{n}^{2}}{\sqrt{204+12b_{n}^{2}} + 35b_{n}} \\ &= \frac{204-1213b_{n}^{2}}{\sqrt{204+12b_{n}^{2}} + 35b_{n}} \end{align}
But this is only increasing if $204-1213b_{n}^{2}>0 \iff b_{n}^{2} < 204/1213 \iff -\sqrt{204/1213}<b_{n}<\sqrt{204/1213}$. I know $0\le b_{n}<1$ but nothing more. What can I do?