How to solve an interesting Series?

47 Views Asked by At

During a complexity analysis of an algorithm, I came upon the following series:

For some $M$

$T_d(1) = m$

$T_0(n) = m$

$T_d(n) = m + T_{d-1}(n-1) + T_d(n-1)$

I would love some help solving this