A165767 Numbers m such that 2^m-m is a semiprime.
6, 7, 15, 18, 25, 31, 33, 39, 42, 45, 49, 62, 73, 85, 93, 103, 119, 171, 187, 193, 199, 201, 269, 367, 379, 405, 413, 449, 459, 481, 489, 549, 577, 601, 631, 669, 787, 795, 1399
Offset: 1
Examples
199 is in this sequence because 2^199-199 = 17377902756647509 * 46235097144973199564251065756966919577339221 and these two factors are prime.
Programs
-
Mathematica
Select[Range[1000], PrimeOmega[2^# - #]==2 &] (* Vincenzo Librandi, Dec 19 2014 *)
-
PARI
for( i=1,200, bigomega(2^i-i)==2 & print1(i","))
Formula
Extensions
More terms from Sean A. Irvine, Oct 22 2009
a(36)-a(37) from Max Alekseyev, Jun 06 2013
a(38) from Sean A. Irvine, Mar 17 2015
a(39) from Sean A. Irvine, Jun 29 2015
Comments