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!)
A192360 Numbers k such that number of primes in the range (k-sqrt(k), k) is equal to number of primes in the range (k, k+sqrt(k)). 0
1, 4, 5, 6, 9, 12, 15, 17, 18, 19, 22, 25, 30, 35, 42, 51, 53, 54, 59, 60, 61, 64, 67, 68, 69, 72, 76, 77, 78, 81, 82, 83, 88, 89, 92, 104, 105, 106, 120, 132, 133, 134, 135, 136, 143, 144, 149, 150, 151, 152, 153, 154, 157, 161, 163, 164, 165, 166 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
isA192360 := proc(n) plow := floor(n-sqrt(n)) ; phi := ceil(n+sqrt(n)) ; plow := numtheory[pi](n-1)-numtheory[pi](plow) ; phi := numtheory[pi] (phi-1)-numtheory[pi](n) ; plow = phi ; end proc:
for n from 1 to 200 do if isA192360(n) then printf("%d, ", n) ; end if; end do: # R. J. Mathar, Jul 02 2011
PROG
(PARI) isA192360(n)=my(s=sqrtint(n)); 2*primepi(n)-isprime(n)==if(n==s^2, primepi(n-s)+primepi(n+s-1), primepi(n-s-1)+primepi(n+s))
CROSSREFS
Sequence in context: A288695 A182719 A003156 * A115984 A145025 A245236
KEYWORD
nonn
AUTHOR
EXTENSIONS
3 removed by Charles R Greathouse IV, Jun 29 2011
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 16 04:02 EDT 2024. Contains 371696 sequences. (Running on oeis4.)