OFFSET
1,5
COMMENTS
Like A205727 (see comments thereto), this looks at odd semiprimes, but excludes squares. This then relates to the Goldbach conjecture 2j=p+q with the additional restriction that j, p, and q are not equal.
LINKS
N. J. A. Sloane, Families of Essentially Identical Sequences, Mar 24 2021 (Includes this sequence)
MATHEMATICA
SemiPrimeQ[n_Integer] := If[Abs[n] < 2, False, (2 == Plus @@ Transpose[FactorInteger[Abs[n]]][[2]])]; nn = 100; t = Select[Range[1, nn^2, 2], SemiPrimeQ[#] && ! IntegerQ[Sqrt[#]] &]; Table[Length[Select[t, # <= n^2 &]], {n, nn}] (* T. D. Noe, Jan 30 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Keith Backman, Jan 30 2012
STATUS
approved