OFFSET
1,1
COMMENTS
Primes in this sequence include: 2, 5, 13, 17, 19, 23, 31, 53, 71, 89, 113, 127, 157, 159, 163, 167, 181, 197, 229. Semiprimes in this sequence include: 4, 10, 14, 15, 39, 49, 55, 57, 58, 69, 82, 85, 86, 91, 111, 118, 122, 129, 134, 141, 143, 166, 183, 185, 215, 217, 221, 249. - Jonathan Vos Post, Nov 12 2005
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..5000
FORMULA
a(n) = Sqrt(A111350(n)).
MATHEMATICA
Select[Range[165], Plus @@ Last /@ FactorInteger[2#^2 + 1] == 2 &]
PROG
(Magma) IsSemiprime:=func<n | &+[k[2]: k in Factorization(n)] eq 2>; [n: n in [2..170] | IsSemiprime(2*n^2+1)]; // Vincenzo Librandi, Sep 23 2012
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ray Chandler, Nov 10 2005
STATUS
approved