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 A237260 #10 Apr 06 2014 13:06:43 %S A237260 0,0,1,1,2,1,2,1,2,3,1,2,3,1,2,3,4,1,2,3,1,2,3,4,23,6,1,2,1,2,3,4,7,1, %T A237260 2,1,2,3,4,7,6,1,2,1,2,1,2,3,4,1,2,3,1,2,3,4,14,1,2,3,1,2,3,4,1,2,3,4, %U A237260 24,1 %N A237260 Least positive integer m < n with prime(prime(m)) + 2 and prime(n-m) + 2 both prime, or 0 if such a number m does not exist. %C A237260 Conjecture: a(n) < sqrt(6*n)*log(3*n) for all n > 0. %C A237260 We have verified this for n up to 5*10^5. Note that a(273) = 271 > sqrt(6*273)*log(2*273). %C A237260 According to the conjecture in A218829, a(n) should be positive for all n > 2. %H A237260 Zhi-Wei Sun, <a href="/A237260/b237260.txt">Table of n, a(n) for n = 1..10000</a> %H A237260 Z.-W. Sun, <a href="http://arxiv.org/abs/1402.6641">Problems on combinatorial properties of primes</a>, arXiv:1402.6641, 2014 %e A237260 a(5) = 2 since prime(prime(2)) + 2 = prime(3) + 2 = 7 and prime(5-2) + 2 = 7 are both prime, but prime(5-1) + 2 = 7 + 2 = 9 is composite. %t A237260 pq[k_,m_]:=PrimeQ[Prime[k]+2]&&PrimeQ[Prime[Prime[m]]+2] %t A237260 Do[Do[If[pq[n-m,m],Print[n," ",m];Goto[aa]],{m,1,n-1}]; %t A237260 Print[n," ",0];Label[aa];Continue,{n,1,70}] %Y A237260 Cf. A000040, A001359, A006512, A218829, A237259. %K A237260 nonn %O A237260 1,5 %A A237260 _Zhi-Wei Sun_, Feb 05 2014