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.

A236481 Primes p with p + 2, prime(p) + 2 and prime(prime(p)) + 2 all prime.

This page as a plain text file.
%I A236481 #12 Jan 27 2014 02:53:33
%S A236481 3,1949,4217,8219,9929,22091,23537,28097,38711,41609,50051,60899,
%T A236481 68111,72227,74159,79631,115151,122399,127679,150959,155537,266687,
%U A236481 267611,270551,271499,284741,306347,428297,433661,444287
%N A236481 Primes p with p + 2, prime(p) + 2 and prime(prime(p)) + 2 all prime.
%C A236481 Conjecture: For any positive integer m, there are infinitely many chains p(1) < p(2) < ... < p(m) of m primes with p(k) + 2 prime for all k = 1,...,m such that p(k + 1) = prime(p(k)) for every 0 < k < m.
%H A236481 Zhi-Wei Sun, <a href="/A236481/b236481.txt">Table of n, a(n) for n = 1..5000</a>
%H A236481 Zhi-Wei Sun, <a href="http://listserv.nodak.edu/cgi-bin/wa.exe?A2=NMBRTHRY;e10c069b.1401">A new kind of prime chains</a>, a message to Number Theory List, Jan. 20, 2014.
%e A236481 a(1) = 3 since 3, 3 + 2 = 5, prime(3) + 2 = 7 and prime(prime(3)) + 2 = prime(5) + 2 = 13 are all prime, but 2 + 2 = 4 is composite.
%t A236481 p[n_]:=p[n]=PrimeQ[n+2]&&PrimeQ[Prime[n]+2]&&PrimeQ[Prime[Prime[n]]+2]
%t A236481 n=0;Do[If[p[Prime[m]],n=n+1;Print[n," ",Prime[m]]],{m,1,10^6}]
%Y A236481 Cf. A000010, A000040, A001359, A006512, A235925, A236066, A236457, A236458, A236468, A236470, A236480, A236482, A236484.
%K A236481 nonn
%O A236481 1,1
%A A236481 _Zhi-Wei Sun_, Jan 26 2014