Minimal continuous poker

Cars and logs

Tai chi and calculus

Haskell vs. C

A Wikipedia-Style Proof

Coin Perfection

Multigrid is the future

Plates

Sieving Primes 2

Sieving Primes

composites (p:ps) = cs
    where cs = (p*p) : merge (map (p*) (merge ps cs)) (composites ps)

merge (x:xs) (y:ys) | xy           = diff (x:xs) ys