I'm using the scipy library to find the zeros of the Bessel functions. It seems to work for lower order Bessel functions
> jn_zeros(200,6)
array([ 211.02916651, 219.51409634, 226.60754246, 232.9865383 ,
238.90771104, 244.50236452])
> jn_zeros(280,6)
array([ 292.29850981, 301.70904157, 309.54484363, 316.56844265,
323.06949569, 329.1964952 ])
But, after a cut-off, it hangs
> jn_zeros(281,6)
The above line never returns. Is this an expected behaviour from scipy?