login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216293 Values of k such that there are exactly two primes between 10k and 10k + 9. 5
2, 3, 5, 6, 8, 15, 16, 17, 23, 25, 26, 27, 28, 33, 34, 35, 37, 38, 40, 44, 49, 50, 52, 54, 56, 57, 59, 60, 65, 67, 70, 73, 75, 76, 91, 94, 97, 99, 101, 110, 112, 115, 118, 121, 122, 123, 127, 128, 129, 132, 136, 143, 149, 154, 155, 157, 161, 162, 172, 174 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) >> n log^2 n. - Charles R Greathouse IV, Sep 07 2012
EXAMPLE
23 is in the sequence because between 230 and 239 there are exactly two primes: 233 and 239. [Bruno Berselli, Sep 04 2012]
MATHEMATICA
t = {}; Do[ps = Select[Range[10*n, 10*n + 9], PrimeQ]; If[Length[ps] == 2, AppendTo[t, n]], {n, 0, 229}]; t (* T. D. Noe, Sep 03 2012 *)
Select[Range[200], Count[Range[10#, 10#+9], _?PrimeQ]==2&] (* Harvey P. Dale, Jan 19 2017 *)
PROG
(Magma) [n: n in [1..200] | #PrimesInInterval(10*n, 10*n+9) eq 2]; // Bruno Berselli, Sep 04 2012
CROSSREFS
Sequence in context: A179791 A139443 A239263 * A088497 A088485 A194626
KEYWORD
nonn
AUTHOR
V. Raman, Sep 03 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)