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.

A379723 Possible values of the sum of squares of divisors function (A001157).

Original entry on oeis.org

1, 5, 10, 21, 26, 50, 85, 91, 122, 130, 170, 210, 250, 260, 290, 341, 362, 455, 500, 530, 546, 610, 651, 820, 842, 850, 962, 1050, 1220, 1300, 1365, 1370, 1450, 1682, 1700, 1810, 1850, 1911, 2210, 2366, 2451, 2500, 2562, 2650, 2810, 2900, 3172, 3255, 3410, 3482
Offset: 1

Views

Author

Amiram Eldar, Jan 03 2025

Keywords

Comments

The distinct values of the sigma_2(n) function, in ascending order.
The asymptotic density of this sequence is 0 (Niven, 1951).
5460 = sigma_2(60) and 5461 = sigma_2(64) are two consecutive integers in this sequence. Are there any other such pairs? There are none below 10^10.

Crossrefs

A066872 is a subsequence.
Subsequence of A211347.

Programs

  • Mathematica
    seq[lim_] := Select[Union[DivisorSigma[2, Range[lim]]], # <= lim &]; seq[3500]
  • PARI
    is(n) = invsigmaNum(n, 2) > 0; \\ Amiram Eldar, Jan 03 2025, using Max Alekseyev's invphi.gp