This reminds me of AWK Music http://kmkeen.com/awk-music/
> Using the fifth root gives five intervals for each octave, a pentatonic scale. Why five notes? It is really easy to make something that sounds good in the pentatonic scale and really hard for a pair of notes to be dissonant. Wait a minute! Is the five-note equal-division of the octave really one of those scales that "just sound good"? It's definitely not the same scale as the example he links to.
(Also, overtone is fun! here's my repl session)
(require '[clojure.math.numeric-tower :as math])
(use 'overtone.live)
(def freqs (map #(* 440 (math/expt 2 (/ % 5))) (range 0 5)))
(map #(demo (sin-osc %)) freqs)
(map #(demo (sin-osc %)) (take 2 freqs))
(map #(demo (sin-osc %)) (take 3 freqs))
(map #(demo (sin-osc %)) (drop 2 freqs))