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.

A130504 Number of k for which T(n) + T(k) is prime, with 0<=k<=n and triangular number T(n)=n(n+1)/2.

This page as a plain text file.
%I A130504 #5 Aug 28 2016 18:18:35
%S A130504 0,1,1,1,2,0,1,3,1,1,2,1,1,4,0,1,8,2,3,4,1,3,7,3,0,4,3,3,6,2,1,6,2,3,
%T A130504 6,2,3,7,4,2,8,2,4,7,2,3,15,5,3,6,2,5,13,5,1,6,2,3,21,3,3,14,3,6,7,2,
%U A130504 5,15,6,3,6,5,9,15,4,3,12,3,6,18,3,7,16,4,6,7,7,5,15,1,4,17,5,6,9,7,8,18,6,5
%N A130504 Number of k for which T(n) + T(k) is prime, with 0<=k<=n and triangular number T(n)=n(n+1)/2.
%C A130504 It appears that a(n)=0 for n=0,5,14,24 only. See A129634 for the least k.
%H A130504 T. D. Noe, <a href="/A130504/b130504.txt">Table of n, a(n) for n = 0..10000</a>
%e A130504 a(4)=2 because 10+1 and 10+3 are prime; a(7)=3 because 28+1, 28+3 and 28+15 are primes.
%t A130504 nn=100; tri=Range[0,nn]Range[nn+1]/2; Table[cnt=0; Do[If[PrimeQ[tri[[k]]+tri[[n]]], cnt++ ], {k,n}]; cnt, {n,Length[tri]}]
%Y A130504 Cf. A069004 (for square numbers).
%K A130504 nonn
%O A130504 0,5
%A A130504 _T. D. Noe_, Jun 04 2007