OFFSET
1,1
EXAMPLE
The lesser of the twin primes < 200 are 3, 5, 11, 17, 29, 41, 59, 71, 101, 107, 137, 149, 179, 191, 197. 24 is in the above sequence because no combination of any two numbers from the set just enumerated can be summed to make 24.
MATHEMATICA
p = Select[ Range[ 200 ], PrimeQ[ # ] && PrimeQ[ # + 2 ] & ]; Complement[ Table[ n, {n, 2, 200, 2} ], Union[ Flatten[ Table[ p[ [ i ] ] + p[ [ j ] ], {i, 1, Length[ p ] }, {j, 1, i} ] ] ] ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Sep 29 2001
STATUS
approved