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.

A337346 Number of proper divisors d of n for which A003961(d) > 2*d.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 2, 0, 2, 0, 2, 0, 0, 0, 4, 0, 0, 1, 2, 0, 3, 0, 3, 0, 0, 0, 5, 0, 0, 0, 4, 0, 3, 0, 1, 2, 0, 0, 6, 0, 1, 0, 1, 0, 4, 0, 4, 0, 0, 0, 7, 0, 0, 2, 4, 0, 1, 0, 1, 0, 3, 0, 8, 0, 0, 1, 1, 0, 2, 0, 6, 2, 0, 0, 7, 0, 0, 0, 3, 0, 7, 0, 1, 0, 0, 0, 8, 0, 2, 1, 4, 0, 1, 0, 3, 3
Offset: 1

Views

Author

Antti Karttunen, Aug 27 2020

Keywords

Comments

Number of terms of A246282 less than n that divide n.
Number of proper divisors d of n for which A048673(d) > d.

Crossrefs

Programs

  • PARI
    A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
    A337346(n) = sumdiv(n,d,(dA003961(d)>(d+d)));

Formula

a(n) = Sum_{d|n, dA252742(d).
a(n) = A337345(n) - A252742(n).