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.

A063500 a(n) is the least composite solution of phi(k + 6n) = phi(k) + 6n.

Original entry on oeis.org

21, 45, 63, 95, 224, 135, 301, 95, 189, 161, 260, 115, 400, 165, 476, 195, 620, 145, 644, 203, 640, 285, 343, 155, 728, 185, 567, 155, 560, 301, 860, 185, 1000, 329, 1892, 235
Offset: 1

Views

Author

Labos Elemer, Jul 30 2001

Keywords

Comments

Next term (a(37)) exceeds 10^5. - Matthew Conroy, Sep 13 2001
Next term (a(37)), if it exists, exceeds 10^7. - David Wasserman, Jul 03 2002
If a(37) exists, it is larger than 7.6 * 10^11. - Jud McCranie, Aug 29 2013
a(37) > 10^13, if it exists. - Giovanni Resta, Feb 25 2020

Examples

			n=100, d=600=6n, a(100)=671=11*61, phi(671)=600, phi(671+600)=phi(1271)=(31-1)*(41-1)=600+600=phi(671)+d.
		

Crossrefs

Programs

  • PARI
    for (n=1, 36, a=1; while (isprime(a) || eulerphi(a + 6*n) != eulerphi(a) + 6*n, a++); write("b063500.txt", n, " ", a) ) \\ Harry J. Smith, Aug 24 2009

Formula

Smallest values satisfying A000010(a(n)+6n)=A000010(a(n))+6n relation.