I need to find the upper asymptotic bound for the recursion:
$$ T(k) = 2T(k-1)+\frac{1}{k} $$
I was able to determine:
The height of this tree is $k-1$.
The cost of each level is $\displaystyle{\frac{2^i}{k-i}}$.
So then I am using the following formula to get an upper bound estimate: $$ T(n) = 2^h*T(1) + \sum \frac{2^i}{k-i}, $$ where the sum term is from $i=0$ to $h-1$. By plugging in the fact that the height, $h = k-1$, this formula can be expanded to $$ T(n) = 2^{k-1}*T(1) + \sum\frac{2^i}{k-i}, $$ where the sum term is from $i=0$ to $k-2$. However, I am stuck at reducing the summation term to produce an estimated Big(O) of just the first time, or $O(2^k)$.
Thanks.