A111303 Numbers n such that 2^tau(n) = n + 1 (where tau(n) = number of divisors of n).
1, 3, 15, 63, 255, 65535, 4294967295
Offset: 1
Programs
-
Mathematica
Select[Range[10^6], 2^DivisorSigma[0, # ] == # + 1 &] 2^Select[Range[150], DivisorSigma[0, 2^#-1]==#&] - 1 (Noe)
-
Python
from sympy import divisor_count as tau def afind(klimit, kstart=1): for k in range(kstart, klimit+1): m = 2**k - 1 if 2**tau(m) == m + 1: print(m, end=", ") afind(klimit=100) # Michael S. Branicky, Dec 16 2021
Formula
Note that this is different from the sequence A019434 - 2.
Extensions
One more term from T. D. Noe, Nov 04 2005
Comments