If computers used base 6 (senary), they could easily find if N is divisible by 2 or 3, and thanks to the digits-sum rules (omega and alpha totatives) they could also easily figure out if N is divisible by 5 or 7.
But computers use base 2 (binary). So they can easily figure out if N is divisble by 2, and thanks to the digit-sum rule (alpha totative) they can also figure out if N is divisible by 3.
To find out if N is divisible by 5, they could convert N to base 16 (hexadecimal), and use the digit-sum rule (omega totative) to find if N is divisible by 5.
I don't know... are there other methods?