\ Q(n) = Q(n - Q(n-2)) + Q(n - Q(n-1)) : Q recursive dup 3 < if drop 1 else dup 2dup 2 - Q - Q -rot 1- Q - Q + then ; : f 16 1 DO I Q . LOOP ; f