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 #19 Jan 03 2022 21:37:22
%S 2,1847,2179,2503,2819,3137,3433,3967,4177,4621,4831,5623,5953,6637,
%T 7283,7369,7393,7433,7621,7993,8039,8147,9257,9587,10753,11027,11197,
%U 11213,11369,11657,13063,13367,13381,13537,13553,13649,13859,14107,14221,14369,14503
%N Six-times-isolated primes: primes p such that none of p+-2, p+-4, p+-6, p+-8, p+-10 nor p+-12 are prime.
%C Essentially the same as A137873. - _R. J. Mathar_, Dec 06 2009
%H Alois P. Heinz, <a href="/A167840/b167840.txt">Table of n, a(n) for n = 1..10000</a>
%e a(1)=2 (-10,-8,-6,-4,-2,0,4,6,8,10,12 are nonprimes);
%e a(2)=1847 (1835,1837,1839,1841,1843,1845,1849,1851,1853,1855,1857,1859 are nonprimes).
%p q:= p-> not ormap(isprime, [seq([p+i, p-i][], i=2..12, 2)]):
%p select(q, [ithprime(i)$i=1..2000])[]; # _Alois P. Heinz_, Jan 03 2022
%Y Cf. A000040, A137873, A167771, A167839.
%K nonn
%O 1,1
%A _Juri-Stepan Gerasimov_, Nov 13 2009, Mar 26 2010
%E More terms from _Dmitry Kamenetsky_, Nov 30 2009
%E Missing term 13553 inserted by _Alois P. Heinz_, Jan 03 2022