No description provided.
1.11
(define (f-iter n a b c i) (if (= (+ 1 n) i) a (f-iter n (+ a b b c c c) a b (+ 1 i)) ) ) (define (f n) (if (< n 3) 1 (f-iter n 1 1 1 3)))