Andy Bohn bio photo

Andy Bohn

Cornell physics graduate student, studying merging black holes, board games, and barrel strength whiskey.

Email

I know what you’re thinking. “I need more arbitrary math in my life for the sake of being a nerd.” Alright, maybe you’ve never thought that, but I recently watched a Numberphile video about a quite interesting sequence of numbers. (Incidentally, if you have thought that, you are really in for a treat.) The sequence begins

2, 3, 4, 82000, …

which follows a well-defined mathematical rule. It piqued my interest partially just because I enjoy the Numberphile youtube channel, but mainly because the number 82000 seems to come out of nowhere in this sequence. No one knows what the next number of the sequence is or if there even is a next number!

So how is this sequence defined, anyway? First, I’ll quote The On-line Encyclopedia of Integer Sequences which defines the sequence such that the nth integer is the smallest “number > 1 whose representation in all bases up to n consists only of zeros and ones.’’ To understand this, we need to figure out what it means to write a number in a certain base.

In everyday life, we write numbers in base-10, where each of the digits can be any number between 0 and 9. Most likely this choice was made because we have 10 fingers, but it’s not the only system people have chosen in the past. The Babylonians had a base-60 system, the Mayans used a base-20 system (“four score and seven years” is essentially 87 in base-20), and some Indian tribes have used base-8, just to list a few different systems.

Let’s consider base-8 as an example for the moment. The digits 372 in base-8 denote the number


.


Generally, a number in base- with digits denotes the number


.


That’s all we need to know to understand this fascinating sequence of integers.

It turns out that base-1 is the same as counting, since , meaning that a number in base-1 is the same as the sum of its digits. The sequence therefore starts with base-2. In base-2 (binary), the smallest number whose representation in all bases up to 2 consists of only zeros and ones turns out to be the number 2. In base-2, the number 2 has the representation , so the first element of the sequence is 2. You may have realized that base-2 is a trivial case, since the only available numbers in base-2 are zero and one.

Continuing, the next number of the sequence is the smallest number that is represented in bases 2 and 3 with only zeros and ones, which is the number 3. Likewise, the following number is number 4. Below is a table summarizing the first three integers in the sequence:

Decimal number base-2 base-3 base-4
2 10    
3 11 10  
4 100 11 10

Here’s where the sequence gets interesting. You might expect the next integer in the sequence would be the number 5, but let’s look at its representation in bases 2 through 5 (which is the rule for the sequence):

Decimal number base-2 base-3 base-4 base-5
5 101 12 11 10

Notice that in base-3, the representation of 5 has a two, which is against the rule.

As it turns out, the smallest number satisfying bases 2 through 5 is 82,000.

82000 in different bases  
base-2 10100000001010000
base-3 11011111001
base-4 110001100
base-5 10111000

In all of these bases, 82000’s representation only has zeros and ones.

So what’s the next number following the rule for bases 2 through 6? Unfortunately 82000 in base-6 is 1431344, which clearly is not made of only zeros and ones. At the moment it’s not known what the next number is, nor if there even is a next number! I’ve written a program to “intelligently” brute-force to try to find it, but no luck so far. Pretty soon I’ll make a post describing my code and my search progress.