Recursioneasy
0:00.0

A recursive function is defined by f(n)=n2+f(n1)f(n) = n^2 + f(n-1) for n1n \ge 1, with f(0)=0f(0) = 0. What is the value of f(3)f(3)?