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.

A330251 Numbers k such that phi(k) = phi(k+3), where phi (A000010) is Euler's totient function.

Original entry on oeis.org

3, 5, 8720288051472, 9134280520365, 41544070492925, 42466684755492, 51363581614342, 68616494581632, 113312918293575, 210911076210835, 215517565688425, 294988451482725, 383617980270525, 432759876053505, 442863123838135, 532068058516992, 892813363927485, 923102743748185, 929531173876305
Offset: 1

Views

Author

Michel Marcus and Giovanni Resta, Feb 29 2020

Keywords

Comments

10^15 < a(20) <= 1089641067389872.
Also terms: 1248817919303952, 1332436545865422, 1394926716616125, 1868522795664525, 1950445682260072.
a(4) and a(9) appear in Kevin Ford's paper.

Crossrefs

Programs

  • Mathematica
    Select[Range[100000], EulerPhi[#] == EulerPhi[# + 3] &] (* Alonso del Arte, Mar 01 2020 *)
  • PARI
    isok(k) = eulerphi(k) == eulerphi(k+3); \\ Michel Marcus, Feb 29 2020