Article 7270Y Multiples with no large digits

Multiples with no large digits

by
John
from John D. Cook on (#7270Y)

Here's a curious theorem I stumbled across recently [1]. Take an integerN which is not a multiple of 10. Then there is some multiple ofN which only contains the digits 1, 2, 3, 4, and 5.

For example, my business phone number 8324228646 has a couple 8s and a couple 6s. But

6312 * 8324228646 = 52542531213552

which contains only digits 1 through 5.

For a general base b, letp be the smallest prime factor ofb. Then for every integer N that is not a multiple of b, there is some multiple ofN whose base b representation contains only the digits 1, 2, 3, ...,b/p.

This means that for every number N that is not a multiple of 16, there is somek such that the hex representation ofkN contains only the digits 1 through 8. For example, if we take the magic number at the beginning of every Java class file, 0xCAFEBABE, we find

1341 * CAFEBABEhex = 42758583546hex.

In the examples above, we're looking for multiple containing only half the possible digits. If the largest prime dividing the base is larger than 2 then we can find a multiples with digits in a smaller range. For example, in base 35 we can find a multiple containing only the digits 1 through 7.

[1] Gregory Galperin and Michael Reid. Multiples Without Large Digits. The American Mathematical Monthly, Vol. 126, No. 10 (December 2019), pp. 950-951.

The post Multiples with no large digits first appeared on John D. Cook.
External Content
Source RSS or Atom Feed
Feed Location http://feeds.feedburner.com/TheEndeavour?format=xml
Feed Title John D. Cook
Feed Link https://www.johndcook.com/blog
Reply 0 comments