Consider a grid of $n$ rows and $m$ columns (in the figures that I attach, is $n = 3$ and $m = 5$, but it might be arbitrary). The grid is populated with integer numbers in the range of [1...90].
How to calculate the probability that one particular configuration will be achieved with $k$ draws?
For example, one possible configuration may be a single line:

or a double line:

How to calculate, for example, that a double line is filled with, let's say, 34 draws?
EDIT I think the problem might be reformulated in the following way:
Consider a set $A$ of $n$ numbers. Consider now another set $B$ of $m$ numbers, with $A ⊂ B$ (and consequently $n < m$).
How to calculate the probability that exactly $j$ numbers of the set $A$ will be picked up from the set $B$, with $k$ draws (without replacement)?
$$P(S_n,[1...m]) = \sum_{k=1}^{m} \frac {\binom {90-n} {k-n}} {\binom {90} {k}}$$
– Luca Fagioli Feb 11 '14 at 13:16The formula, given $$k = 5$$ (5 squares) and $$m = 34$$ (34 draws), returns a value of 0.03693258326850859; testing the same situation over a million of times, it turns out that the probability is ~0.064
– Luca Fagioli Feb 25 '14 at 15:09