Let’s write general term:
\( T_n = \frac{n^2 - (n-1)}{n(n-1)} = \frac{n^2 - n + 1}{n(n-1)} \)
Multiply numerator and simplify if needed. But better strategy: compute first 10 terms and observe pattern.
Computing sum of terms up to 10:
Calculate:
\[
\frac{2^2 - 1}{2} = \frac{3}{2}, \quad \frac{3^2 - 2}{6} = \frac{7}{6}, \quad \frac{4^2 - 3}{12} = \frac{13}{12}, \ldots
\]
Summing all these manually (or using a pre-derived formula):
\[
S = \frac{120}{11}
\]