A252791 Numbers m such that 6^m + m is a semiprime.
2, 3, 5, 7, 11, 23, 41, 55, 73, 91, 131, 199, 221, 287
Offset: 1
Examples
2 is in this sequence because 6^2+2 = 2*19 is semiprime. 7 is in this sequence because 6^7+7 = 271*1033 and these two factors are prime.
Links
- FactorDB, Status of 6^335+335
Programs
-
Magma
IsSemiprime:=func; [m: m in [1..90] | IsSemiprime(s) where s is 6^m+m];
-
Mathematica
Select[Range[90], PrimeOmega[6^# + #]==2 &]
Extensions
a(10)-a(14) by Luke March, Jul 08 2015
Comments