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.

A319481 Integers k such that uphi(k) divides k, where uphi is the unitary phi function (A047994).

Original entry on oeis.org

1, 2, 6, 12, 168, 240, 14880, 65280, 4294901760, 7608944640, 1125874137169920, 18446744069414584320
Offset: 1

Views

Author

Michel Marcus, Sep 20 2018

Keywords

Crossrefs

Cf. A047994.
A030163 is a subsequence.

Programs

  • PARI
    uphi(n) = my(f=factor(n)~); prod(i=1, #f, f[1, i]^f[2, i]-1);
    isok(n) = frac(n/uphi(n)) == 0;