OFFSET
1,2
COMMENTS
All positive even numbers are terms of the sequence:
members of twin primes are odd and the sum of three odd primes is odd.
No odd numbers >=19 are in the sequence (conjecture?).
EXAMPLE
15=3+5+7, 19=3+5+11 hence 15 and 19 are not in the sequence.
MATHEMATICA
pr=Prime[Range[100]]; se=Select[pr, PrimeQ[ #-2]||PrimeQ[ #+2]&];
se2=Select[Union[Total/@Subsets[se, {3}]], #<200&]; Complement[Range[200], se2]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Jul 30 2010
STATUS
approved