If we consider a box containing $n$ balls numbered from $1$ to $n$. If $455$ is the number of ways to get three balls from the box such that no two balls are consecutively numbered, then we have to find the value of $n$.
Someone please help me out in this. I am not getting anything, how to start it?

There are $\binom{n}{3}$ ways to pick three balls. Now to exclude the ones with two or more consecutive balls.
We do this by counting in how many ways we can pick two consecutive balls, and then a single ball from what's left. There are $n-1$ ways to pick two consecutive balls, and then there are $n-2$ balls left. So there are $(n-1)(n-2)$ ways to pick two consecutive balls and then one ball. However, this counts every case of three consecutive balls twice. We therefore need to subtract them once. There are $n-2$ ways to do that, so we get $(n-1)(n-2) - (n-2) = (n-2)^2$.
Therefore the total number of ways to pick three balls so that none are consecutive is $\binom n3 - (n-2)^2 = \frac{n^3 - 9n^2 +26n - 24}{6}$. You want to find the $n$ that makes this fraction equal to $455$.