This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A053070 #26 Feb 07 2019 02:12:09 %S A053070 53,157,173,257,263,373,563,593,607,653,733,947,977,1103,1123,1187, %T A053070 1223,1367,1747,1753,1907,2287,2417,2677,2903,2963,3307,3313,3637, %U A053070 3733,4013,4457,4597,4657,4993,5107,5113,5303,5387,5393,5563,5807,6073,6263 %N A053070 Primes p such that p-6, p and p+6 are consecutive primes. %C A053070 Balanced primes separated from the next lower and next higher prime neighbors by 6. %C A053070 Subset of A006489. - _R. J. Mathar_, Apr 11 2008 %C A053070 Subset of A006562. - _Zak Seidov_, Feb 14 2013 %C A053070 a(n) == {3,7} mod 10. - _Zak Seidov_, Feb 14 2013 %C A053070 Minimal difference is 6: a(5) - a(4) = 263 - 257, a(20) - a(19) = 1753 - 1747, ... . - _Zak Seidov_, Feb 14 2013 %H A053070 Harvey P. Dale, <a href="/A053070/b053070.txt">Table of n, a(n) for n = 1..1000</a> %F A053070 a(n) = A047948(n) + 6. - _R. J. Mathar_, Apr 11 2008 %e A053070 157 is separated from both the next lower prime, 151 and the next higher prime, 163, by 6. %p A053070 for i from 1 by 1 to 800 do if ithprime(i+1) = ithprime(i) + 6 and ithprime(i+2) = ithprime(i) + 12 then print(ithprime(i+1)); fi; od; # _Zerinvary Lajos_, Apr 27 2007 %t A053070 lst={};Do[p=Prime[n];If[p-Prime[n-1]==Prime[n+1]-p==6,AppendTo[lst,p]],{n,2,7!}];lst (* _Vladimir Joseph Stephan Orlovsky_, May 20 2010 *) %t A053070 Transpose[Select[Partition[Prime[Range[1000]],3,1],Differences[#]=={6,6}&]][[2]] (* _Harvey P. Dale_, Oct 11 2012 *) %Y A053070 Cf. A047948, A006489, A006562. - _Zak Seidov_, Feb 14 2013 %K A053070 easy,nonn %O A053070 1,1 %A A053070 _Harvey P. Dale_, Feb 25 2000 %E A053070 Edited by _N. J. A. Sloane_ at the suggestion of _Zak Seidov_, Apr 09 2008