Given the recurrence system: \begin{equation*} \begin{cases} T_n = T_{n-1} + S_n, &\\ S_n = T_{n-1} + S_{n-1} & \end{cases} \end{equation*}
And we know $T_0 = 1, S_0 = 0$.
I tried to solve it the following way:
Using generating functions I represent the system as \begin{equation*} \begin{cases} \mathfrak{T}(t) - 1 = \mathfrak{T}(t) + \mathfrak{S}(t), &\\ \mathfrak{S}(t) = \mathfrak{T}(t) + \mathfrak{S}(t) & \end{cases} \end{equation*}
But solving obtained system of equation I conclude that $\mathfrak{T} = 0$ and $\mathfrak{S} = -t$. It seems wrong for me. Possibly is my way of solving wrong?