You came up with a recurrence relation; that is, $x_{n}$ as a function of $x_{n-1}$:
$$
x_n = \sqrt{x_{n-1} + 3}
$$
If a sequence converges to something, that something must be a fixed point of the function that takes $x_{n-1}$ to $x_n$. Do you see why?
So, we say "Well, if $x_{n-1}$ is to equal $x_n$, then any values $L$ at which they are equal must be the solutions of the following:"
$$
\begin{aligned}
L &= \sqrt{L + 3}\\
L^2 &= L + 3\\
L^2 - L - 3 &= 0\\
\end{aligned}
$$
So, using the quadratic formula, we have:
$$
L = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} = \frac{1 \pm \sqrt{1 + 12}}{2} = \frac{1 \pm \sqrt{13}}{2}
$$
You can probably guess that the limit will be the positive one, $\frac{1 + \sqrt{13}}{2}$. In order to conclude this, you should show that the function is increasing. Or, actually, you could just show that every term in the sequence is positive (they're sums of square roots of positive things).
(But note that the fact that $\frac{1 - \sqrt{13}}{2}$ is a solution shows that you need to know the initial conditions to determine the behavior of this sequence. If $x_1$ were $\frac{1 - \sqrt{13}}{2}$, then the sequence would just stay there forever!
But all other starting conditions will lead to $\frac{1 + \sqrt{13}}{2}$. [Unless they're too negative, i.e. $x_1 = -10$ will leave you with $x_2 = \sqrt{-7}$]. It's an attracting fixed point, while $\frac{1 - \sqrt{13}}{2}$ is a repelling fixed point.)