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.

Showing 1-1 of 1 results.

A057919 Numbers k such that phi(k) divides phi(k+1), where phi(k) is the Euler totient function A000010.

Original entry on oeis.org

1, 2, 3, 4, 6, 12, 15, 16, 18, 36, 72, 90, 96, 104, 108, 154, 162, 164, 192, 194, 255, 256, 286, 364, 432, 486, 495, 576, 584, 702, 768, 792, 804, 924, 975, 1066, 1152, 1260, 1296, 1458, 2146, 2204, 2592, 2625, 2834, 2916, 3255, 3382, 3456, 3705, 3888
Offset: 1

Views

Author

Leroy Quet, Nov 11 2000

Keywords

Comments

The intersection of this sequence and A057920 is A001274. - Michel Marcus, Sep 14 2015

Examples

			6 is included because phi(6) = 2 divides phi(7) = 6.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[4000], Divisible[EulerPhi[# + 1], EulerPhi[#]] &] (* Amiram Eldar, Jul 13 2019 *)
  • PARI
    lista(nn) = for (n=1, nn, if (eulerphi(n+1) % eulerphi(n) == 0, print1(n, ", "))); \\ Michel Marcus, Sep 14 2015

Extensions

Offset set to 1 by Michel Marcus, Sep 14 2015
Showing 1-1 of 1 results.