By "continuous" do you mean that the numbers are meant to increase by
a certain increment each time?
If so, then assuming that your numbers are in column A starting at A2,
and that your increment value is in C2, then enter this formula in B3:
=IF(A3-A2=C$2,"ok","Broken here")
Copy this formula down column B for as many entries as you have in
column A.
Then highlight columns A and B and click Data | Filter | Autofilter.
Use the pull-down at the top of column B to select "Broken here" to
see the non-continuous numbers.
If your increment is fractional you might need to apply ROUND( ... ,2)
or something similar as follows:
=IF(ROUND(A3-A2,2)=ROUND(C$2,2),"ok","Broken here")
Hope this helps.
Pete