Removing a number and reinserting all its multiples (by the primes in the set) into a priority queue is wrong (in the sense of the question) - i.e. it produces correct sequence but inefficiently so.
It is inefficient in two ways - first, it overproduces the sequence; second, each PQ operation incurs extra costs (the operations remove_top and insert are not usually both O(1), certainly not in any list- or tree-based PQ implementation).
The efficient algorithm maintains pointers back into the sequence itself as it is being produced, to find and append the next number. In pseudocode:
return array h where
h[0]=1; n=0; ps=[2,3,5, ... ]; // base primes
is=[0 for each p in ps]; // indices back into h
xs=[p for each p in ps] // next multiples: xs[k]==ps[k]*h[is[k]]
repeat:
h[++n] := minimum xs
for each (i,x,p) in (is,xs,ps):
if( x==h[n] )
{ x := p*h[++i]; } // advance the minimal multiple/pointer
For each minimal multiple it advances its pointer, while at the same time calculating its next multiple value. This too effectively implements a PQ but with crucial distinctions - it is before the end point, not after; it doesn't create any additional storage except for the sequence itself; and its size is always the same whereas the size of past-the-end PQ grows as we progress along the sequence (in the case of Hamming sequence (based on {2,3,5} set), as n^(2/3), for n numbers of the sequence).
The classic Hamming sequence in Haskell is essentially the same algorithm: (general version follows, below)
h = 1 : map (2*) h `union` map (3*) h `union` map (5*) h
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
It is also possible to directly calculate a slice of the sequence, by direct enumeration of the triples and assessing their value through logarithms, logval(i,j,k) = i*log 2+j*log 3+k*log 5. Using the Hamming sequence in Haskell as an example again,
slice hi w = (c, sortBy (compare `on` fst) b) where -- hi is a top log2 value
lb5=logBase 2 5 ; lb3=logBase 2 3 -- w<1 (NB!) is (log2 width)
(c,b) = f 0 -- total count, the band
[ ( i+1, -- total triples w/this j,k
[ (r,(i,j,k)) | frac < w ] ) -- store it, if inside band
| k <- [ 0 .. floor ( hi /lb5) ], let p = fromIntegral k*lb5,
j <- [ 0 .. floor ((hi-p)/lb3) ], let q = fromIntegral j*lb3 + p,
let (i,frac) = properFraction(hi-q) ; r = hi - frac ] -- r = i + q
where
f !c [] = (c,[])
f !c ((c1,b1):r) = let (cr,br) = f (c+c1) r in
case b1 of { [v] -> (cr,v:br)
; _ -> (cr, br) }
-- f 0 xs = (sum $ map fst xs, concat $ map snd xs)
We can generate smooth numbers for arbitrary base primes using foldi function (see wikipedia) to fold lists in a tree-like fashion, creating a priority queue as a tree of comparisons:
smooth base_primes = h where -- strictly increasing base_primes NB!
h = 1 : foldi g [] [map (p*) h | p <- base_primes]
g (x:xs) ys = x : union xs ys
foldi f z [] = z
foldi f z (x:xs) = f x (foldi f z (pairs f xs))
pairs f (x:y:t) = f x y : pairs f t
pairs f t = t