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.

A381743 The number of divisors d of n such that d*n is abundant.

Original entry on oeis.org

0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 6, 0, 1, 0, 0, 0, 6, 0, 6, 0, 0, 0, 8, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 9, 0, 0, 0, 8, 0, 8, 0, 4, 0, 0, 0, 10, 0, 3, 0, 4, 0, 8, 0, 8, 0, 0, 0, 12, 0, 0, 0, 0, 0, 8, 0, 2, 0, 8, 0, 12, 0, 0, 0, 2, 0, 8, 0, 10, 0, 0, 0, 12, 0, 0
Offset: 1

Views

Author

Amiram Eldar, Mar 06 2025

Keywords

Comments

The indices of records of this sequence are the highly composite numbers (A002182) without 2 and 4.

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[n, 1 &, DivisorSigma[-1, #*n] > 2 &]; Array[a, 100]
  • PARI
    a(n) = sumdiv(n, d, sigma(d*n, -1) > 2);

Formula

a(n) = A000005(n) if and only if n is abundant (A005101).
a(n) = A000005(n) - 1 if and only if n is either 1, a perfect number (A000396), or in A341358.
a(n) >= 1 if and only if n is in A381738.
a(n) = 1 if and only if n is in A381742.