I'm trying to find the probability that a 5-card poker hand contains 5 numbers in a numerical sequence.
For the first card, there are 52 options. For the second, there are 4 on either side of the first, so you have $\frac{8}{51}$. For the third, there are 3 on either side of the second, so you have $\frac{6}{50}$.
The end result is:
$$P(Straight)= 52\cdot{8\choose 51}\cdot{6\choose50}\cdot{4\choose49}\cdot{2\choose48}=\frac{19968}{5997600}=0.0033$$
Have I done this correctly? What makes me doubtful is the exact answer I've seen evaluates to 0.0039. Any help is appreciated.
"Straight" in poker is generally taken to exclude "straight flush" and royal flush"
However, in the body of the question, you have written "5 numbers in a numerical sequence." Taking this to be your intention, i.e. 1-2-3-4-5 through 9-10-11-12-13, the computation, ignoring various rules of poker, would just be
$4^5\times 9/\binom{52}{13}$
Note
I have deliberately used numbers 1-13 for illustration to avoid detailed rules for poker, eg under high rules an ace could count as high or low (changing the possible runs of five numbers to $10$), and the question of whether royal flush and straight flush are to be included or not.
I trust you can add these niceties of poker rules, having grasped the basic concept.