Trial rows show which small divisors do not split the modulus.
Try divisors in order
The table tries small divisors in a fixed order and records the remainder each time.
first trial=2
Two does not divide
Trial 2 leaves remainder 1, so it is not a factor.
55mod2=1
Four is checked deterministically
The table also shows trial 4, which leaves remainder 3.
55mod4=3
Summary
A no row means the remainder is not zero. The first yes row gives a factor.
no rows before factor=3