Sometimes we find a recurrance and/or prove by induction on k rather than n. We can do this because of the relationship that 2k=n.

Consider:
k values n values
01
12
24
... ...
k-1n/2
kn
Here I will consider the recurrance relation:

Suppose
T(1) = 1
T(n) = 3T(n/2) + n
then
R(0) = 1 and
R(k) = 3R(k-1) + 2k