Given the following definition, compute Q(5).
Q(n) = 

0
if n = 0
2
if n = 1
4
if n = 2
Q(n − 1) + Q(n − 2) + Q(n − 3)  
if n > 2