A242332 Numbers k such that k^2 + 4 is a semiprime.
0, 9, 19, 21, 23, 25, 31, 41, 43, 51, 53, 55, 63, 69, 71, 75, 77, 79, 83, 91, 93, 105, 107, 109, 113, 119, 123, 129, 131, 133, 143, 145, 149, 151, 153, 157, 165, 171, 173, 175, 181, 185, 187, 191, 195, 197, 201, 209, 221, 223, 225, 227, 241, 249, 251, 257, 259
Offset: 1
Keywords
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
IsSemiprime:=func; [n: n in [0..300] | IsSemiprime(s) where s is n^2+4];
-
Mathematica
Select[Range[0, 300], PrimeOmega[#^2 + 4] == 2 &]
Comments