Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #2 Mar 30 2012 17:30:35
%S 2,4,12,18,24,26,30,36,38,42,48,50,54,56,60,66,68,72,78,80,84,86,90,
%T 92,94,96,98,102,108,114,116,120,122,126,128,132,134,138,144,146,150,
%U 156,158,162,164,168,170,174,176,180,186,188,192,198
%N Even numbers not the sum of a pair of the lesser of the twin primes.
%e 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.
%t 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} ] ] ] ]
%K nonn
%O 1,1
%A _Robert G. Wilson v_, Sep 29 2001