It's easy to calculate the probability of a straight flush when you're dealt $5$ cards. I'd like to ask for the probability of the same when you're dealt half the deck.
I seek $P(\text{straight flush})$ of any suit. We have $52$ cards, and $26$ are dealt. A straight flush is $5$ consecutive cards of the same suit. An Ace may come either before a $2$ or after a King but not both.
It may be possible to get a computer to count it.
Each suit is disjoint from the other suits.
We only want the probability of zero straight flushes.
The 'distribution' is how many spades, how many hearts, and so on.
$$P(a,b,c,d)=\frac{{13\choose a}{13\choose b}{13\choose c}{13\choose d}}{52\choose 26}$$ Then, given $x$ cards in a suit, what is the chance of no straight flush in that suit? Some easy values are $Q(0)=Q(1)=...Q(4)=1$, and $Q(13)=0$. There are $2^{13}=8192$ subsets of thirteen cards. It is simple to get a computer to run through all 8192, counting how many cards and whether there is a straight flush. Lastly, get the machine to calculate $$\sum_{a+b+c+d=26}P(a,b,c,d)Q(a)Q(b)Q(c)Q(d)$$ There are $29\choose3$ ways that four non-negative numbers can sum to 26; the cases with $a>13$ can be covered by setting $Q(14)=...=Q(26)=0$.
The reason for $29\choose3$ is a stars-and-bars argument. You have 26 cards, and three suit-dividers. They fill 26+3=29 places. Choose the three spots for the suit-dividers, and put unmarked cards in the other 26 spots. Now you know how many of each suit there are. All those to the left of the first divider are spades; all those between divider 1 and divider 2 are hearts, then diamonds; and all those to the right of the third divider are clubs.