A252792 Numbers m such that 7^m + m is a semiprime.
2, 3, 6, 12, 15, 16, 30, 54, 244, 850, 1488
Offset: 1
Keywords
Examples
2 is in this sequence because 7^2+2 = 3*17 is semiprime. 6 is in this sequence because 7^6+6 = 5*23531 and these two factors are prime.
Programs
-
Magma
IsSemiprime:=func; [m: m in [1..600] | IsSemiprime(s) where s is 7^m+m];
-
Mathematica
Select[Range[600], PrimeOmega[7^# + #]==2 &]
Extensions
a(9) from Carl Schildkraut, Aug 14 2015
a(10) from Kevin P. Thompson, Apr 25 2022
a(11) from Charles R Greathouse IV, Apr 25 2022