OFFSET
1,2
COMMENTS
The semiprimes of this form are: 4, 39, 259, 327, 403, 579, 679, 1027, 1159, 1299, 1603, 1939, 2119, 2307, 3139, 3603, 4359, 4627, ...
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Range[300], PrimeOmega[#^2 + 3] == 2 &]
PROG
(Magma) IsSemiprime:=func<i | &+[d[2]: d in Factorization(i)] eq 2>; [n: n in [0..300] | IsSemiprime(s) where s is n^2+3];
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, May 14 2014
STATUS
approved