A250288 Numbers n such that the duodecimal repunit (12^n - 1)/11 is a semiprime.
7, 13, 17, 37, 47, 73, 101, 131, 151, 167, 197, 241, 263
Offset: 1
Examples
a(1) = 7 so 1111111 = 46E * 2X3E (written in base 12).
Links
- Samuel Wagstaff, The Cunningham Project
Programs
-
Mathematica
Select[Range[120], PrimeOmega[(12^# - 1)/11] == 2 &] (* Alonso del Arte, Dec 18 2014 *)
Comments