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.

A327158 Unitary multiply-perfect numbers: n divides usigma(n), where usigma is the sum of unitary divisors of n (A034448).

Original entry on oeis.org

1, 6, 60, 90, 87360
Offset: 1

Views

Author

Antti Karttunen, Aug 28 2019

Keywords

Comments

10^13 < a(6) <= 146361946186458562560000. - Giovanni Resta, Aug 29 2019

Crossrefs

Fixed points of A323166, positions of zeros in A327164.
Cf. A002827 (a subsequence), A034448, A327163.
Cf. also A007691.

Programs

  • PARI
    A034448(n) = { my(f=factorint(n)); prod(k=1, #f~, 1+(f[k, 1]^f[k, 2])); }; \\ After code in A034448
    isA327158(n) = (gcd(n,A034448(n))==n);