fork download
  1. \ Q(n) = Q(n - Q(n-2)) + Q(n - Q(n-1))
  2. \ 76 bytes
  3.  
  4. : Q recursive dup dup 3 < if - 1+ else 2dup 2 - Q - Q -rot 1- Q - Q + then ;
  5.  
  6.  
  7. : f 16 1 DO
  8. I Q .
  9. LOOP ; f
Success #stdin #stdout 0.01s 6828KB
stdin
Standard input is empty
stdout
1 1 2 3 3 4 5 5 6 6 6 8 8 8 10