cp's OEIS Frontend

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.

A141279 Primes p such that p - 6^2, p - 6, p + 6 and p + 6^2 are also primes.

This page as a plain text file.
%I A141279 #15 May 19 2019 17:20:53
%S A141279 47,53,67,73,103,233,277,353,373,607,947,977,1187,1223,1487,1663,2683,
%T A141279 2693,2713,2963,3307,3733,4457,5443,6323,6863,7523,9007,11903,11933,
%U A141279 12107,12547,12583,15313,15767,18217,19427,20107,20753,21523,22073
%N A141279 Primes p such that p - 6^2, p - 6, p + 6 and p + 6^2 are also primes.
%C A141279 Subsequence of A006489. A141280 and A141281 are subsequences.
%H A141279 Rick L. Shepherd, <a href="/A141279/b141279.txt">Table of n, a(n) for n = 1..10000</a>
%t A141279 pQ[n_]:=And@@PrimeQ[{n-36,n-6,n+6,n+36}]; Select[Prime[Range[10,3000]],pQ]  (* _Harvey P. Dale_, Feb 02 2011 *)
%t A141279 Select[Prime[Range[10,3000]],AllTrue[#+{-36,-6,6,36},PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* _Harvey P. Dale_, Aug 05 2018 *)
%Y A141279 Cf. A006489, A141280, A141281, A141282.
%K A141279 nonn
%O A141279 1,1
%A A141279 _Rick L. Shepherd_, Jun 21 2008