cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A077129 Smallest number which is relatively prime to all the numbers between successive odd primes.

Original entry on oeis.org

3, 5, 7, 5, 11, 5, 13, 11, 7, 13, 7, 5, 7, 11, 13, 7, 17, 11, 5, 17, 7, 13, 11, 13, 5, 11, 5, 13, 37, 7, 13, 5, 17, 7, 23, 11, 7, 11, 13, 7, 29, 5, 11, 5, 31, 19, 11, 5, 13, 11, 7, 17, 13, 11, 13, 7, 19, 11, 5, 23, 29, 13, 5, 11, 31, 11, 29, 5, 17, 11, 17, 11, 19, 7, 13, 19, 11
Offset: 0

Views

Author

Amarnath Murthy, Oct 29 2002

Keywords

Comments

Naturally every member is a prime.

Examples

			a(5)= 11,is the smallest number coprime to all the numbers from 13 to 17 i.e. 14,15 and 16.
		

Programs

  • Mathematica
    sncp[n_]:=Module[{cr=Range[Prime[n]+1,Prime[n+1]-1],k=3},While[Total[Boole[CoprimeQ[ cr,k]]]!= Length[cr],k=NextPrime[k]];k]; Array[sncp,80,2] (* Harvey P. Dale, Apr 06 2023 *)
  • PARI
    for(n=2,100, for(i=2,10^9,f=0:for(k=prime(n)+1,nextprime(prime(n)+1)-1,if(gcd(i,k)>1,f=1:break)): if(!f,print1(i","):break)))

Extensions

More terms from Ralf Stephan, Mar 27 2003