A309358 Numbers k such that 10^k + 1 is a semiprime.
4, 5, 6, 7, 8, 19, 31, 53, 67, 293, 586, 641, 922, 2137, 3011
Offset: 1
Examples
a(1) = 4 because 10^4 + 1 = 10001 = 73*137.
Programs
-
Magma
IsSemiprime:=func; [n: n in [2..200] | IsSemiprime(s) where s is 10^n+1]; // Vincenzo Librandi, Jul 31 2019
-
Mathematica
Select[Range[200], Plus@@Last/@FactorInteger[10^# + 1] == 2 &] (* Vincenzo Librandi, Jul 31 2019 *)
Comments