OFFSET
1,1
COMMENTS
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The first composite is 4=2*2 and 4 mod (2+2) = 0 is even, so 4 is in the sequence.
The second composite is 6=2*3 and 6 mod (2+3) = 1 is odd, so 6 is not a term.
The third composite is 8=2*2*2 and 8 mod (2+2+2) = 2 is even, so 8 is a term.
MATHEMATICA
cerQ[n_]:=!PrimeQ[n]&&EvenQ[Mod[n, Total[Flatten[Table[First[#], {Last[ #]}]&/@FactorInteger[n]]]]]; Select[Range[2, 200], cerQ] (* Harvey P. Dale, Jan 19 2014 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Juri-Stepan Gerasimov, Jun 24 2009
EXTENSIONS
104 removed by R. J. Mathar, Sep 23 2009
STATUS
approved