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.

A090778 Numbers k such that phi(k) divides k*(k - phi(k)).

Original entry on oeis.org

1, 2, 4, 6, 8, 10, 12, 16, 18, 20, 24, 32, 36, 40, 42, 48, 50, 54, 60, 64, 72, 80, 84, 96, 100, 108, 114, 120, 126, 128, 136, 144, 156, 160, 162, 168, 180, 192, 200, 216, 220, 228, 240, 250, 252, 256, 272, 288, 294, 300, 312, 320, 324, 336, 342, 360, 378, 384, 400
Offset: 1

Views

Author

Benoit Cloitre, Feb 08 2004

Keywords

Comments

Also phi(k) divides k^2. - Enrique Pérez Herrero, Jul 04 2010

Programs

  • Mathematica
    pdnQ[n_]:=Module[{ephi=EulerPhi[n]},Divisible[n(n-ephi),ephi]]; Select[ Range[ 400],pdnQ] (* Harvey P. Dale, Dec 22 2015 *)

Formula

a(n) seems to be asymptotic to c*n^2 with c=0.11.....