Please implement following number series, FiboGorki numbers using a recursive function:
FiboGorki = 1 3 5 9 17 31 57 105 193......
Starting from the 4th element, each element is a summation of previous 3 numbers.
Your function prototype should be:
int FiboGorki(int n)
FiboGorki = 1 3 5 9 17 31 57 105 193......
Starting from the 4th element, each element is a summation of previous 3 numbers.
Your function prototype should be:
int FiboGorki(int n)
Comment