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

%I #15 Apr 17 2014 03:57:48

%S 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,

%T 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,

%U 0,0,0,0,2,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0

%N Number of primes between successive composite squarefree numbers (A120944).

%C First positions where the numbers n=2..5 occur are at: 2, 142, 2180230, 256857823. - _Vaclav Kotesovec_, Apr 17 2014

%e a(4) is 2 because A120944(4)=15, A120944(5)=21, 2 primes between them: 17 and 19.

%o (PARI)

%o freesqrcomp(n)=issquarefree(n)&&!isprime(n)

%o nextfqc(n)={local(k);k=n+1;while(!freesqrcomp(k),k+=1);return(k)}

%o primesin(a,b)={local(p=a,q=0);while(p<b,p=nextprime(p);if(p<b,q+=1);p+=1);return(q)}

%o {for(i=2,1000,if(freesqrcomp(i),m=nextfqc(i);p=primesin(i,m);print(p)))}

%Y Cf. A120944, A240593.

%K nonn

%O 1,2

%A _Antonio Roldán_, Apr 08 2014

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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)