The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A195008 Numbers n such that there are no primes between n*sqrt(n-1) and (n+1)*sqrt(n). 1
1, 24, 36, 47, 93, 105, 109, 117, 122, 207, 627, 996 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numbers n such that there are only nonprimes between n*sqrt(n-1) and (n+1)*sqrt(n).
No more terms up to 100000. - Franklin T. Adams-Watters, Sep 08 2011
LINKS
EXAMPLE
a(1)=1 because 1*sqrt(1-1)=0<(nonprime 1)<(1+1)*sqrt(1)=2,
a(2)=24 because 24*sqrt(24-1)<(nonprimes 116,117,118,119,120,121)<(24+1)*sqrt(24).
MATHEMATICA
Join[{1}, Select[Range[1000], PrimePi[# Sqrt[#-1]]==PrimePi[(#+1)Sqrt[#]]&]] (* Harvey P. Dale, Jun 01 2018 *)
PROG
(PARI) isa(n)=if(n<=1, n==1, primepi(floor(n*sqrt(n-1)))==primepi(floor((n+1)*sqrt(n)))
CROSSREFS
Sequence in context: A307682 A290016 A330880 * A054775 A273088 A334674
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(11) and a(12) from Franklin T. Adams-Watters, Sep 08 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 June 7 14:59 EDT 2024. Contains 373202 sequences. (Running on oeis4.)