I have the recursive Equation $$ T(n) = \begin{cases} 0 & \text{for } n = 0,\\ 1 & \text{for } 0 < n \leq 2,\\ \displaystyle 1 + \frac{2}{n} \sum_{i=1}^{n-2} T(i) &\text{else.} \end{cases} $$
Now I want to solve it for large $n$.
Experimentally, I could determine $\lim_{n \to \infty} T(n)/n \approx 0.4324314$, but is there a systematic proof for that?
// EDIT: Experimental result corrected. In my calculation, one constant had slipped up into the nominator, sorry.