OFFSET
1,1
EXAMPLE
14 is in the sequence as 14=2*7 and 2+7=9, an odd composite; 60 is not, as 60=2^2*3*5 and 2+5 is 7, not composite.
MATHEMATICA
Select[Range[240], CompositeQ[#] && CompositeQ[c = Min[First/@FactorInteger[#]] + Max[First/@FactorInteger[#]]] && OddQ[c] &] (* Stefano Spezia, Aug 02 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Jan 04 2009
EXTENSIONS
Definition and examples simplified by D. S. McNeil, Dec 10 2009
Corrected and extended by D. S. McNeil, Dec 10 2009
STATUS
approved