Recursive Math Function | Calculating f(n) using f(n-1) + 6
f(1)=3, f(n)= f(n-1) +6 for n ≥ 2 In this problem, we are given a recursive function f(n), where the value of f(n) is defined based on...