fork download
  1. (println
  2. (map
  3. #(loop[a(sorted-set 1)n 1](let[x(first a)a(disj a x)](if(= n %)x(recur(into a[(+ 1(* 2 x))(-(* 3 x)1)])(inc n)))))
  4. [1 2 3 4 5 10 20 30 55]))
  5.  
Success #stdin #stdout 1.98s 335488KB
stdin
Standard input is empty
stdout
(1 2 3 5 7 17 50 95 255)