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.

A146747 Numbers k such that sigma_1(k)*sigma_0(k)/(sigma_1(k)-sigma_0(k)) is an integer.

Original entry on oeis.org

2, 3, 5, 6, 7, 20, 30
Offset: 1

Views

Author

Ctibor O. Zizka, Nov 01 2008

Keywords

Comments

Numbers k such that A000203(k)*A000005(k)/(A000203(k)-A000005(k)) is an integer.

Crossrefs

Programs

  • Mathematica
    q[n_] := Module[{s = DivisorSigma[1, n], d = DivisorSigma[0, n]}, Divisible[s*d, s - d]]; Select[Range[2, 100], q] (* Amiram Eldar, Apr 07 2024 *)
  • PARI
    is(n) = {my(f = factor(n), s = sigma(f), d = numdiv(f)); n > 1 && !((s*d) % (s-d));} \\ Amiram Eldar, Apr 07 2024