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.

A384841 Numbers k for which sigma(k - x) + sigma(k + x) = 8*k has at least one nonnegative solution.

Original entry on oeis.org

14412, 17640, 25581, 25623, 25659, 26208, 30240, 31110, 31380, 31500, 32340, 32736, 32760, 34958, 35112, 44211, 44343, 45048, 45324, 45444, 46578, 48090, 49368, 51674, 52045, 52290, 53103, 53127, 53460, 54000, 54180, 59400, 59940, 60228, 60903, 60914, 60987, 61920, 62340, 62370
Offset: 1

Views

Author

Michel Marcus, Jun 10 2025

Keywords

Crossrefs

Cf. A000203 (sigma), A027687 (a subsequence).
Cf. A383758.

Programs

  • PARI
    isok(k) = for (x=0, k-1, if (sigma(k - x) + sigma(k + x) == 8*k, return(1)));