Suppose that s(n) is defined as follows.
  case s(n) = 0                  when n == 0
  case s(n) = s(n-1) + 2*n + 1
Do a step-by-step evaluation of s(3).