Is there a neat analytic way to solving a problem like this?
If $\dbinom{n+1}{r-2}=28$, find the value of $(n-7)!$
Assume $n,r\in\mathbb{N}$ with $0\le r\le n+1$.
An easy way to do it would be to memorize or construct Pascal's triangle to find out that the first instance of $28$ in the array for $\dbinom jk$ occurs when $j=8$, and so for this problem $n+1=8\implies n=7$ (and $r-2=2$ or $r-2=6$, so that $r=4$). Then finding $(n-7)!$ is trivial. But I don't particularly like relying on rote memorization or table construction.
I was wondering if this would be doable with the recursive formula $\dbinom j{k-1}+\dbinom jk=\dbinom{j+1}k$. It seems to me that the argument $r-2$ complicates any attempt to decompose $\dbinom{n+1}{r-2}$ into simpler coefficients but I wouldn't know where to begin. I suspect a clever manipulation of the factorial formula might also be useful, though nothing immediately comes to mind.