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.

A378663 Number of divisors d of n such that sigma(d) < 2*d < A003961(d), where A003961 is fully multiplicative with a(p) = nextprime(p).

Original entry on oeis.org

0, 0, 0, 1, 0, 0, 0, 2, 1, 1, 0, 1, 0, 1, 1, 3, 0, 1, 0, 2, 1, 0, 0, 2, 0, 0, 2, 2, 0, 2, 0, 4, 0, 0, 1, 2, 0, 0, 1, 3, 0, 2, 0, 2, 3, 0, 0, 3, 1, 2, 0, 2, 0, 2, 0, 3, 1, 0, 0, 3, 0, 0, 3, 5, 0, 0, 0, 2, 1, 3, 0, 3, 0, 0, 2, 2, 0, 1, 0, 4, 3, 0, 0, 3, 0, 0, 0, 3, 0, 4, 1, 2, 0, 0, 0, 4, 0, 3, 2, 3, 0, 0, 0, 3, 4
Offset: 1

Views

Author

Antti Karttunen, Dec 06 2024

Keywords

Comments

Number of terms of A341615 that divide n.

Crossrefs

Inverse Möbius transform of A341613.

Programs

  • PARI
    A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
    A341613(n) = ((sigma(n)<(2*n))&&((2*n)<A003961(n)));
    A378663(n) = sumdiv(n,d,A341613(d));

Formula

a(n) = Sum_{d|n} A341613(d).
a(n) = A337345(n) - A341620(n).
a(n) = A378662(n) - A080225(n).