Compute the first terms of the sequence:
$$1 \qquad -2 \qquad -8 \qquad -20 \qquad -44 \dots$$
And then look at the difference between next terms, getting
$$3 \qquad 6 \qquad 12 \qquad 24 \qquad \dots$$
This sequence has a very familiar pattern, since you can see that every term is the double of the previous term.
So that the $n$-th terms should be
$$T(n)=1- (3+6+12+ \dots 3 \cdot 2^{n-2}) = 1-3(2^{n-1}-1) = 4 - 3\cdot2^{n-1}$$
After conjectured this, the last thing to do is to check that this is the correct solution: so plug it into the recursive definition of $T(n)$ and check that everything works.