A252657 Numbers m such that 4^m - m is a semiprime.
2, 11, 17, 33, 55, 59, 63, 153, 315
Offset: 1
Examples
2 is in this sequence because 4^2-2 = 2*7 is semiprime. 17 is in this sequence because 4^17-17 = 6971*2464477 and these two factors are prime.
Links
- factordb.com, Status of 4^483-483.
Programs
-
Magma
IsSemiprime:=func; [m: m in [2..120] | IsSemiprime(s) where s is 4^m-m];
-
Mathematica
Select[Range[120], PrimeOmega[4^# - #]==2 &]
Extensions
a(8)-a(9) from Luke March, Jul 08 2015
Comments