Is there a systematic way to determine the number of numbers between 10 and, say, 50, divisible by their units digits?

I saw a variation on this recently... somewhere. Not allowed to say where. But I ended up writing out some numbers and finding a pattern.

For example...

  • anything divisible by 11 is divisible by the units digit, so that includes 11, 22, 33, and 44.
  • anything that is a multiple of 12 counts, so 12, 24, 36, and 48, but of course not 60.
  • anything ending in 1 counts, so 21, 31, and 41
  • anything ending in 2 counts, so 32 and 42.
  • only 33 ends in 3 and is also divisible by 3, so that doesn't count.
  • numbers ending in 4 count if I didn't say them, nothing really.
  • anything ending in 5 counts, so 15, 25, 35, and 45.
  • the only number that counts that ends in 6 is 36, but I already said it.
  • nothing ending in 7 counts until 77, which is larger than 50.
  • nothing ending in 8 counts since I already said 48.
  • nothing ending in 9 counts until 99, which is larger than 50.
  • and nothing ending in 0 counts.

And I think that's all of them, so 17 numbers. Which is so abnormal, really.

1 Answer
Mar 18, 2016

The number of numbers between 1010 and 10k10k divisible by their units digit can be represented as

sum_(n=1)^9 fl((k*gcd(n,10))/n)9n=1fl(kgcd(n,10)n)

where fl(x)fl(x) represents the floor function, mapping xx to the greatest integer less than or equal to xx.

Explanation:

This is equivalent to asking how many integers aa and bb exist where 1<=b<51b<5 and 1<=a<=91a9 and aa divides 10b+a10b+a

Note that aa divides 10b + a10b+a if and only if aa divides 10b10b. Thus, it suffices to find how many such bbs exist for each aa. Also, note that aa divides 10b10b if and only if each prime factor of aa also is a prime factor of 10b10b with appropriate multiplicity.

All that remains, then, is to go through each aa.

a = 1a=1: As all integers are divisible by 11, all four values for bb work.

a=2a=2: As 1010 is divisible by 22, all four values for bb work.

a=3a=3: As 1010 is not divisible by 33, we must have bb being divisible by 33, that is, b=3b=3.

a=4a=4: As 1010 is divisible by 22, we must have bb as divisible by 22 to have the appropriate multiplicity. Thus, b=2b=2 or b=4b=4.

a=5a=5: As 1010 is divisible by 55, all four values for bb work.

a=6a=6: As 1010 is divisible by 22, we must have bb as divisible by 33, that is, b=3b=3.

a=7a=7: As 1010 is not divisible by 77, we must have bb as divisible by 77. But b<5b<5, and so no value for bb works.

a=8a=8: As 1010 is divisible by 22, we must have bb as divisible by 44, that is, b=4b=4

a=9:a=9: As 1010 is not divisible by 33, we must have bb as divisible by 3^232. But b<5b<5, and so no value for bb works.

This concludes each case, and so, adding them up, we get, as concluded in the question, 1717 values. This method can easily be extended to greater values, however. For example, if we wanted to go from 1010 to 10001000, we would restrict 1<=b<1001b<100. Then, looking at a=6a=6, say, we would have 22 divides 1010 and thus 66 divides 10b10b if and only if 33 divides bb. There are 3333 multiples of 33 in the range for bb, and thus 3333 numbers which end in 66 and are divisible by 66 between 1010 and 10001000.

In a shorter, easier to calculate notation, using the observations above, we can write the number of integers between 1010 and 10k10k as

sum_(n=1)^9 fl(k/(n/gcd(n,10)))=sum_(n=1)^9 fl((k*gcd(n,10))/n)9n=1fl(kngcd(n,10))=9n=1fl(kgcd(n,10)n)

where fl(x)fl(x) represents the floor function, mapping xx to the greatest integer less than or equal to xx.