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

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