This document proposes a histogram-based method for initializing cluster centers in k-means clustering. The method works by recursively finding the most populated histogram bin for each attribute dimension, using the bin centroid as the coordinate for that dimension. This focuses the cluster centers on dense regions of the data distribution. The method is linear in complexity, deterministic, and order-invariant, making it suitable for large datasets where other initialization methods are impractical or unreliable. Experimental results on UCI datasets show it outperforms the commonly used maximin initialization method.