How can I solve the following recurrence equation? Is there a general approach to solve rec. equation with more recursive calls?
$$A(n) = 2A(n-1) + A(n-5)$$
$$A(0) = 1 , A(1) = 2,A(2) = 4, A(3) = 8, A(4) = 16$$
When i try to use methods from more simple equations with just one recursive part, (like repeated substitution) i end up having just chaos and i don't really see how to apply the basecase then. Thanks for taking a look at it.