I'm trying to find a generating function ($g(x) = \sum_{k=0}^\infty T_{k}x^k$) from a recursion.
The problem is that I found a term that I've never seen before and I don't know how to proceed:
$$\sum_{k=0}^\infty T_{k/2}x^k$$
$$ T(n) = \begin{cases} const & \text{if $n < 2$} \\ n + 2T(n/2) + const & \text{otherwise} \\ \end{cases} $$
More details
By "proceed" I mean something like $\sum_{k=1}^\infty T_k x^t = g(x) - T_0$.
I tried with the substitution $k=2t$. I get $\sum_{t=0}^\infty T_{t}x^{2t} = \sum_{t=0}^\infty(T_tx^t)(1x^t)$ … but then?
If by $\sum T_{k/2} x^k$ you mean $\sum T_k x^{2k}$, then this is $\sum T_k (x^2)^k = g(x^2)$.