Page 1 of 1

Consider the following recursive function G(n) = n*G(n-1)+2*G(n-2), G(0)=0, G(1)= 2. Compute G(5).

Posted: Thu May 12, 2022 8:07 am
by answerhappygod
Consider the following recursive function G(n) =
n*G(n-1)+2*G(n-2), G(0)=0, G(1)= 2. Compute G(5).