(define (thing stuff) (cond ((< stuff 2) 1) (else (* stuff (thing (- stuff 1)) (thing (- stuff 2)))))) (thing 4)