The function f(n) = 3f(n-2) - 2f(n-1), where $f(2) = 8$ and $f(1) = -1$. What is the value of f(5)?
We calculate, applying a similar method for $f(4)$ and $f(5)$.
$f(3) = 3f(1) - 2f(2) = -3 - 16 = -19$
$f(4) = 24 + 38 = 62$
$f(5) = -57 + 124 = \boxed{67}$.