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.

A337378 Numbers k for which A003961(k) > 2*sigma(k).

Original entry on oeis.org

16, 24, 27, 32, 36, 40, 45, 48, 49, 54, 56, 63, 64, 72, 80, 81, 84, 90, 96, 98, 99, 100, 104, 105, 108, 112, 117, 120, 125, 126, 128, 135, 140, 144, 147, 152, 153, 160, 162, 168, 171, 175, 176, 180, 184, 189, 192, 196, 198, 200, 207, 208, 210, 216, 224, 225, 234, 240, 243, 245, 248, 250, 252, 256, 264, 270, 272, 273
Offset: 1

Views

Author

Antti Karttunen, Aug 27 2020

Keywords

Comments

Note that A003961(n) >= sigma(n) for all n. See A286385.

Crossrefs

Subsequence of A246282 and of A337381.
Positions of negative terms in A377984, and in A378751.
Cf. A337379 (complement), A337380 (characteristic function).

Programs

  • PARI
    A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
    isA337378(n) = (A003961(n)>2*sigma(n));