Well the original question was asking about Tower of Hanoi. First I need to come up with a recurrence for the Tower of Hanoi with 4 poles. (Please note the original tower only consist of 3 poles)
The recurrence I came up with is $T(n)=2*T(n-2)+3$
Then part b of the question ask me to show that the recurrence I came up with satisfy $T(n)=O(2^{n/10})$. Doesn't have a clue how to show this.
I'm not really sure about this recurrence and the Hanoi tower, but an easy way to solve it is using difference equations: $$ T_{n-1} = 2 T_{n-3} + 3 $$ Now subtract this equation from the one in your question and denote $\Delta T_n = T_n - T_{n-1}$ and work your way to $\Delta T_1$. Then sum over $n$ and on LHS you'll have most terms cancelling out. Can you handle from here?