Welcome to the CHICKEN Scheme pasting service

Collatz sequences added by salinasc on Thu Sep 26 19:50:45 2019

(import (chicken format))

(define (collatz-chain-length n)
  (let loop ([c 1]
             [m n])
    (cond [(= m 1) c]
          [(even? m) (loop (+ c 1) (quotient m 2))]
          [else (loop (+ c 1) (+ 1 (* 3 m)))])))

(define answer-014
  (let loop ([i 1]
             [longest-chain-length-so-far 1]
             [starting-number-with-longest-chain 1])
    (if (> i 1000000)
        starting-number-with-longest-chain
        (let ((current-chain-length (collatz-chain-length i)))
          (if (> current-chain-length longest-chain-length-so-far)
              (loop (+ i 1) current-chain-length i)
              (loop (+ i 1)
                    longest-chain-length-so-far
                    starting-number-with-longest-chain))))))

(define (main)
  (display (format "Problem 14 answer: ~a~%" answer-014)))

(main)

Your annotation:

Enter a new annotation:

Your nick:
The title of your paste:
Your paste (mandatory) :
Which module provides `process-wait'?
Visually impaired? Let me spell it for you (wav file) download WAV