Are there any "relatively simple" ways of seeing whether a number is divisible by a small prime not 3. For example, one simply sums the digits of n modulo 3 and if they sum to zero, then n is divisible by 3, or that if it ends in a 5 or a 0 then $5|n$. Are there any similarly "easy" ideas for primes like 7, 11 etc.
The motivation for this is factorisation algorithms, nothing new or groundbreaking but just trying some things with some existing (and fairly rubbish by modern standards) algorithms.