I'm fairly new to java and I have this assignment to do? How would i go about doing this?
Implement a program which computes the following recurrence relation:
f(1) = 1; f(2) = 1; f(3) = 1; f(4) = 1; f(5) = 1;
f(n) = f( n - 1 ) + 3 * f( n - 5 ) for all n > 5
Display the results for n = 6, 7, 12, and 15