Welcome to MSE!
I think some of the confusion regarding the responses to this question come from the (admittedly subtle) distinction between a closed form solution to a recurrence and an extension of a recurrence (to all of $\mathbb{C}$, say).
If you're able to solve a recurrence, so that $T(n) = f(n)$ where $f$ is some "nice" function, then we get a canonical extension of $T$ to the whole of $\mathbb{C}$ (or whatever the domain of $f$ is) which is likely to be continuous (indeed, differentiable, smooth, analytic, etc.).
However, this is far from the only way to extend a recurrence to all of $\mathbb{C}$. As Somos points out, there are lots of functions $f$ so that $f(n) = T(n)$ on $\mathbb{Z}$. Indeed, as you can see in this answer, we can always find such an $f$. Though this is likely to be unsatisfying, since the $f$ we get seems to have nothing at all to do with our original recurrence! Moreover, the $f$ we get is likely to be difficult to compute with in practice.
So then, it seems like you're interested in solving recurrences (in the sense of finding a closed form), since this gives us a canonical means of extending the domain of $T$ which has the extra benefit of being "effective", in the sense that a good computer algebra system (like sage) will be able to actually compute with the resulting function.
The good news is that there's lots of literature on solving recurrences. See, for instance, the excellent books Generatingfunctionology (freely and legally available here) and Concrete Mathematics (freely and probably illegally available here).
The bad news is that solving recurrence relations is extremely difficult in general. Already the recurrence $T(n) = T(n-1)^2 + 1$ doesn't have a known closed form (and provably doesn't have a closed form for a certain formalization of that phrase. See here). Oftentimes it's a difficult problem to just obtain asymptotics for $T(n)$.
As an aside, recurrences are closely related to iterating polynomials. For instance, the recurrence relation above $T(n) = T(n-1)^2 + 1$ clearly satisfies $T(n) = \underbrace{p(p(p( \cdots (p}_{n \text{ times}}(T(0)) \cdots )))$, where $p(x) = x^2 + 1$, but at this point we should be quite worried! After all, iterating polynomials quickly gives rise to chaotic behavior. See the logistic map for a strikingly simple example. This gives some justification for why solving recurrences must be hard in general!
I hope this helps ^_^