A recursive function f is defined as follows:
f(n)=2, if n=0
=m, if n=1
=2*f(n-1)+4*f(n-2), if n>=2
If the value of f(4) is 88, then the value of m is:
1
-1
2
1
3
0
4
2
5
-2
A recursive function f is defined as follows:
f(n)=2, if n=0
=m, if n=1
=2*f(n-1)+4*f(n-2), if n>=2
If the value of f(4) is 88, then the value of m is: