OFFSET
1,2
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.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems: Inversion of Multiplicative Functions (invphi.gp).
Ivan Niven, The asymptotic density of sequences, Bull. Amer. Math. Soc., Vol. 57 (1951), pp. 420-434. See Theorem 3, p. 429.
MATHEMATICA
seq[lim_] := Select[Union[DivisorSigma[2, Range[lim]]], # <= lim &]; seq[3500]
PROG
(PARI) is(n) = invsigmaNum(n, 2) > 0; \\ Amiram Eldar, Jan 03 2025, using Max Alekseyev's invphi.gp
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Jan 03 2025
STATUS
approved