A215511 A sequence of prime numbers expressed as minimum bases using only digits 0 and 1.
10, 10, 11, 101, 111, 1011, 10001, 10011, 11101, 11111, 11101, 10011, 10111, 101111
Offset: 3
Examples
The first term is 3 in base 3. The next prime in that base is 13, which is greater than the value of the prime in the next base, which is 5 in base 4, so the second term is 5 in base 4.
Crossrefs
Formula
Step 1: Starting at the first prime number (3), convert to the minimum base (3, as all primes may be expressed in binary).
Step 2: If the next prime number can be converted into the same base using only 0 and 1 without exceeding the value of the next prime number in the next base, this is the next item in the sequence.
Step 3: If the next prime number cannot be expressed in this base before exceeding the value of the next prime number in the next base, skip this prime number and move on to the next prime number and repeat Step 2.
Step 4: If the next prime number cannot be expressed in this base before exceeding the value of the next prime number in the next base, but can be expressed in the next base, this is the next item in the sequence.
Comments