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.

A077149 a(1) =3. For n>1, a(n) = smallest k such that there are n numbers m not relatively prime to n in range n < m < k.

Original entry on oeis.org

3, 7, 13, 13, 31, 16, 57, 25, 37, 27, 133, 31, 183, 39, 49, 49, 307, 46, 381, 55, 71, 63, 553, 61, 151, 75, 109, 78, 871, 71, 993, 97, 118, 99, 148, 91, 1407, 111, 142, 107, 1723, 101, 1893, 125, 142, 135, 2257, 121, 393, 135, 188, 149, 2863, 136, 256, 155
Offset: 1

Views

Author

Amarnath Murthy, Oct 30 2002

Keywords

Comments

a(p) = p^2 + p +1, a(2^m) = 3*2^m +1,a(p^m) = p^m + p^(m+1) +1, if p is a prime.

Examples

			a(5) = 31 as there are 5 non-coprime numbers to 5 between 5 and 31, i.e. 10,15,20,25 and 30.
		

Crossrefs

Cf. A077148.

Programs

  • PARI
    print1("3,"):for(n=2,100,s=0:for(k=n+1,10^9,if(gcd(n,k)>1,s=s+1): if(s==n,s=k:break)):print1(s+1","))

Extensions

More terms from Ralf Stephan, Mar 25 2003