In rummy type games, a "meld" is either:
- Three of a kind (e.g. three sevens or three queens, of any suit)
- A run of three in the same suit (e.g. 3-4-5 of hearts or J-Q-K of clubs)
Suppose you have N cards, drawn randomly from a standard 52 card deck, no jokers. What are the odds that you CANNOT make a meld?
I don't even know how to begin figuring this one out.
Given your context, I would say that it can't be calculated easily for the general $N$ case.
Even for $N = 14$, I think you would need a computer to calculate all possible cases, with inclusion/exclusion to prevent duplicate cases.
But since you need a computer anyway, I would just run a series of simulations. E.g. 1000 random drawings, and count the number of cases without melds. (Not sure if we can enumerate all ~2trillion cases https://www.wolframalpha.com/input/?i=52+choose+14 with some smart branch&bounding)