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.

A216306 Values of k such that 10*k+3 and 10*k+7 alone are prime between 10*k and 10*k+9.

This page as a plain text file.
%I A216306 #13 Jul 20 2021 14:34:46
%S A216306 16,67,121,220,229,247,283,295,334,361,379,394,481,592,604,673,724,
%T A216306 757,760,772,793,844,880,913,988,1024,1066,1108,1144,1159,1186,1192,
%U A216306 1234,1243,1303,1318,1396,1417,1453,1465,1471,1501,1507,1537,1549,1660,1762,1858
%N A216306 Values of k such that 10*k+3 and 10*k+7 alone are prime between 10*k and 10*k+9.
%H A216306 V. Raman, <a href="/A216306/b216306.txt">Table of n, a(n) for n = 1..10000</a>
%F A216306 a(n) >> n log^2 n. - _Charles R Greathouse IV_, Sep 07 2012
%t A216306 t = {}; Do[ps = Select[Range[10*n, 10*n + 9], PrimeQ]; If[ps == {10*n + 3, 10*n + 7}, AppendTo[t, n]], {n, 0, 2476}]; t (* _T. D. Noe_, Sep 04 2012 *)
%t A216306 Select[Range[2000],Boole[PrimeQ[10#+{1,3,7,9}]]=={0,1,1,0}&] (* _Harvey P. Dale_, Jul 20 2021 *)
%Y A216306 Cf. A032352, A007811, A078494.
%K A216306 nonn
%O A216306 1,1
%A A216306 _V. Raman_, Sep 03 2012