(this is exciting!) I know, the subject matter is well known. The state of the art (in Haskell as well as other languages) for efficient generation of unbounded increasing sequence of Hamming numbers, without duplicates and without omissions, has long been the following (AFAIK - and btw it is equivalent to the original Edsger Dijkstra's code too):
hamm :: [Integer]
hamm = 1 : map (2*) hamm `union` map (3*) hamm `union` map (5*) hamm
where
union a@(x:xs) b@(y:ys) = case compare x y of
LT -> x : union xs b
EQ -> x : union xs ys
GT -> y : union a ys
The question I'm asking is, can you find the way to make it more efficient in any significant measure? Is it still the state of the art or is it in fact possible to improve this to run twice faster and with better empirical orders of growth to boot?
If your answer is yes, please show the code and discuss its speed and empirical orders of growth in comparison to the above (it runs at about ~ n^1.05 .. n^1.10 for first few hundreds of thousands of numbers produced). Also, if it exists, can this efficient algorithm be extended to producing a sequence of smooth numbers with any given set of primes?

~ n log nis usually manifesting itself asn^(1+a)with lowa's ) 2. that is the question.... :) – Will Ness Sep 18 '12 at 15:51ainn^(1+a)for true~ n log nshould diminish asngrows, but here the memory retention comes into play, and then bignum arithmetic starts taking its toll; so in practice theafor the classical code grows, for n = 100,000 ... 1 mil and up. – Will Ness Sep 18 '12 at 16:01O(n)algorithm. – Will Ness Sep 18 '12 at 17:00