OFFSET
1,2
EXAMPLE
For example, 12 is composite and it has 6 divisors: 1, 2, 3, 4, 6, 12. Of these, 4 are not prime: 1, 4, 6, 12. Since 4 is not prime either, 12 is in the sequence.
MATHEMATICA
NonPrimeDivisors[n_] := Length[Select[Divisors[n], ! PrimeQ[#] &]]; Select[Range[200], ! PrimeQ[#] && ! PrimeQ[NonPrimeDivisors[#]] &] (* T. D. Noe, Oct 20 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Oct 15 2011
STATUS
approved