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.

A216296 Values of k such that 10k + 3 is the only prime between 10k and 10k + 9.

This page as a plain text file.
%I A216296 #17 Jun 21 2022 04:24:24
%S A216296 11,29,68,74,77,86,95,98,116,119,137,152,158,173,182,191,200,205,215,
%T A216296 221,224,227,242,250,263,266,275,284,302,341,343,359,362,364,380,383,
%U A216296 386,436,437,446,449,452,458,460,466,470,473,494,497,515,532,533,548
%N A216296 Values of k such that 10k + 3 is the only prime between 10k and 10k + 9.
%H A216296 V. Raman, <a href="/A216296/b216296.txt">Table of n, a(n) for n = 1..10000</a>
%F A216296 a(n) ~ 0.4 n log n. - _Charles R Greathouse IV_, Sep 07 2012
%t A216296 t = {}; Do[ps = Select[Range[10*n, 10*n + 9], PrimeQ]; If[ps == {10*n + 3}, AppendTo[t, n]], {n, 0, 647}]; t (* _T. D. Noe_, Sep 03 2012 *)
%Y A216296 Cf. A032352, A007811, A078494.
%K A216296 nonn
%O A216296 1,1
%A A216296 _V. Raman_, Sep 03 2012