login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176406
Odd semiprimes minus 2.
0
7, 13, 19, 23, 31, 33, 37, 47, 49, 53, 55, 63, 67, 75, 83, 85, 89, 91, 93, 109, 113, 117, 119, 121, 127, 131, 139, 141, 143, 153, 157, 159, 167, 175, 181, 183, 185, 199, 201, 203, 207, 211, 213, 215, 217, 219, 233, 235, 245, 247, 251, 257, 263, 265, 285, 287
OFFSET
1,1
FORMULA
a(n) = A046315(n) - 2.
MAPLE
isA001358 := proc(n) numtheory[bigomega](n) = 2 ; end proc: for n from 1 to 400 by 2 do if isA001358(n+2) then printf("%d, ", n) ; end if; end do: # R. J. Mathar, Apr 20 2010
MATHEMATICA
Select[Range[9, 301, 2], PrimeOmega[#]==2&]-2 (* Harvey P. Dale, May 11 2018 *)
CROSSREFS
Cf. A007921.
Sequence in context: A309649 A088982 A354460 * A033561 A227030 A049591
KEYWORD
nonn
AUTHOR
EXTENSIONS
Entries checked by R. J. Mathar, Apr 20 2010
STATUS
approved