A060660 Numbers k such that sigma(x) = k has exactly 4 solutions.
96, 120, 180, 312, 372, 420, 434, 456, 540, 546, 560, 624, 702, 728, 798, 816, 930, 1064, 1120, 1170, 1404, 1632, 1638, 1674, 1710, 1776, 1792, 1944, 2100, 2240, 2544, 2560, 2664, 2760, 2800, 2844, 2856, 2940, 2952, 3000, 3040, 3048, 3060, 3080, 3096
Offset: 1
Keywords
Examples
96 = sigma(42) = sigma(62) = sigma(69) = sigma(77).
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Max Alekseyev, PARI/GP Scripts for Miscellaneous Math Problems (invphi.gp).
Crossrefs
Programs
-
Mathematica
a = Table[ 0, {5000} ]; Do[ s = DivisorSigma[ 1, n ]; If[ s < 5001, a[ [ s ] ]++ ], {n, 1, 5000} ]; Select[ Range[ 5000 ], a[ [ # ] ] == 4 & ]
-
PARI
is(k) = invsigmaNum(k) == 4 \\ Amiram Eldar, Nov 17 2024, using Max Alekseyev's invphi.gp