Power series, power serious introduces Catalan numbers via solving the generating function equation
This equation can be translated to the circuit.
step-1
(define catalan
(~>> (one)
(c-loop (~>> (== _ (c-reg 0))
(c-add +)
(-< _ (~>> (-< _ _) c-convo))))
))
(probe (~>> (catalan) (stream-take _ 10) stream->list))
;; '(1 1 2 5 14 42 132 429 1430 4862)