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.

A186406 Numbers k such that there are 14 primes between 100*k and 100*k + 99.

This page as a plain text file.
%I A186406 #33 Mar 22 2024 03:48:08
%S A186406 5,7,9,20,27,35,82,147,179,277,286,514,556,694,709,796,810,1158,1363,
%T A186406 1416,2033,2173,2232,2297,2660,3054,3274,4508,4996,6635,8194,8237,
%U A186406 11047,11467,12303,16166,19543,19882,19936
%N A186406 Numbers k such that there are 14 primes between 100*k and 100*k + 99.
%C A186406 There are 20053913 possible prime patterns for centuries having 14 primes. - _Tim Johannes Ohrtmann_, Aug 27 2015
%H A186406 T. D. Noe, <a href="/A186406/b186406.txt">Table of n, a(n) for n = 1..1000</a>
%e A186406 5 is in this sequence because there are 14 primes between 500 and 599 (503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593 and 599).
%t A186406 Select[Range[20000],PrimePi[100#+99]-PrimePi[100#]==14&] (* _Harvey P. Dale_, Jun 20 2021 *)
%o A186406 (PARI) for(n=1, 1e6, if(sum(k=100*n,100*(n+1), ispseudoprime(k))==14, print1(n", "))); \\ _Charles R Greathouse IV_, Feb 21 2011
%o A186406 (PARI) N=100; s=0; forprime(p=2, 4e9, if(p>N, if(s==14, print1((N\100)-1,", ")); s=1; N=100*(p\100+1),s++)) \\ _Charles R Greathouse IV_, Feb 21 2011
%Y A186406 Cf. A038822 (number of primes between 100n and 100n+99), A186311 (first occurrences).
%Y A186406 Cf. A181098 (no primes), A186393-A186408 (1 to 16 primes), A186509 (17 primes), A361723 (18 primes).
%K A186406 nonn
%O A186406 1,1
%A A186406 _Tim Johannes Ohrtmann_, Feb 20 2011
%E A186406 a(30)-a(39) from _Charles R Greathouse IV_, Feb 21 2011