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!)
A240592 Number of primes between successive composite squarefree numbers (A120944). 1
1, 2, 0, 2, 0, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 2, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
First positions where the numbers n=2..5 occur are at: 2, 142, 2180230, 256857823. - Vaclav Kotesovec, Apr 17 2014
LINKS
EXAMPLE
a(4) is 2 because A120944(4)=15, A120944(5)=21, 2 primes between them: 17 and 19.
PROG
(PARI)
freesqrcomp(n)=issquarefree(n)&&!isprime(n)
nextfqc(n)={local(k); k=n+1; while(!freesqrcomp(k), k+=1); return(k)}
primesin(a, b)={local(p=a, q=0); while(p<b, p=nextprime(p); if(p<b, q+=1); p+=1); return(q)}
{for(i=2, 1000, if(freesqrcomp(i), m=nextfqc(i); p=primesin(i, m); print(p)))}
CROSSREFS
Sequence in context: A341021 A358331 A277142 * A001877 A339896 A112712
KEYWORD
nonn
AUTHOR
Antonio Roldán, Apr 08 2014
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 1 17:33 EDT 2024. Contains 373025 sequences. (Running on oeis4.)