Consider the sequence below.
-11, 22, -44, 88, …
Complete the recursively defined function to describe this sequence.
f(0) = ___
f(n) = f(n - 1) · ___ for n = 1, 2, 3, …