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 #12 Jan 16 2014 17:35:13
%S 5,7,151,229,571,643,1051,1153,1669,1723,1951,2029,2131,2239,2311,
%T 2593,2659,3001,3121,3169,3253,3583,3769,4003,4219,4231,4483,4549,
%U 4723,4789,5641,6451,6553,6661,6763,6949,6961,7129,7351,8011,9043,9463,9631,10009
%N Greater of twin primes (A006512) which are not Labos primes (A080359).
%C The terms greater than 7 are in A164294.
%H V. Shevelev, <a href="http://www.cs.uwaterloo.ca/journals/JIS/VOL15/Shevelev/shevelev19.html">Ramanujan and Labos primes, their generalizations, and classifications of primes</a>, J. Integer Seq. 15 (2012) Article 12.5.4
%o (PARI) lista(nn)= {my(vlp = readvec("/gp/bfiles/b080359.txt")); forprime (p=3, nn, if (isprime(p-2) && !vecsearch(vlp, p), print1(p, ", ")););} \\ _Michel Marcus_, Jan 15 2014
%Y Cf. A006512, A080359, A164294, A164371, A104272, A001359.
%K nonn
%O 1,1
%A _Vladimir Shevelev_, Aug 14 2009
%E More terms from _Michel Marcus_, Jan 15 2014