OFFSET
1,1
COMMENTS
The primes make their first appearance according to their distribution after p=7.
EXAMPLE
The first odd composites are 9,15,21, with factors 3.3,3.5,3.7, so the sequence opens 3,3,3,5,3,7
MATHEMATICA
fcon[n_]:=Table[#[[1]], #[[2]]]&/@FactorInteger[n]; fcon/@Select[ Range[ 9, 151, 2], CompositeQ]//Flatten (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Aug 20 2020 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Jon Perry, Jun 13 2003
EXTENSIONS
Corrected and extended by Harvey P. Dale, Aug 20 2020
STATUS
approved