Here is another option
where instr(","+Table.numberList+',", ',51,') > 0
I add a beginning comma and an ending comma
and then search for comma 51 comma.
This assumes there are no blanks in the list.
If you have blanks use
instr( ","+replace(numberList," "', ""')+",", ",51,") > 0