OFFSET
1,1
COMMENTS
This is to semiprimes as A045753 is to primes.
LINKS
Zak Seidov, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1) = 14 because 56 - 1 = 5*11 and 56 + 1 = 3*19 are semiprimes, and this is the first number having this property.
a(2) = 23 because 92 - 1 = 7*13 and 92 + 1 = 3*31 are semiprimes, and this is the second number having this property.
a(3) = 30 because 120 - 1 = 7*17 and 120 + 1 = 11*11 are semiprimes, and this is the third number having this property.
MATHEMATICA
Select[Range[500], PrimeOmega[4# - 1] == 2 && PrimeOmega[4# + 1] == 2 &] (* Alonso del Arte, Oct 12 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Oct 12 2012
STATUS
approved