I'd like to get a probability bound on the maximum number of collisions in a hash table. I.e., given number of buckets m, number of items n, what is:
Prob(number of collisions < c)
as a function of n, m and c, where c is some number between 1 and n. For example, c=1 would be the birthday paradox (~e^(-n^2/2m)) and c=n would be 1.
(I am assuming a uniform hash function, i.e., n items are distributed over m buckets uniformly at random.)