So, here is the question:
For any position integer $n$, let $T(n)$ be the number 1 if $n<4$ and the number $T(n-1) + T(n-2) + T(n-3)$ if $n \geq 4$.
We have $T(1)=1, T(2)=2, T(3)=3$ $$T(4)=T(3)+T(2)+T(1) = 1+1+1+1 = 3$$ $$T(5) = T(4)+T(3)+T(2) = 3+1+1 = 5$$
Prove that: (Universal n is an element of all positive integers), $T(n)<2^n$
Any suggestions?