A048255 Integers whose sum of divisors is 6^5 = 7776.
3210, 3498, 3710, 3882, 3910, 4310, 4922, 4982, 5182, 5457, 5885, 6035, 6095, 6307, 6797, 7117, 7327, 7597
Offset: 1
Examples
Divisors of 7597 are {1,71,107,7597}, whose sum is 7776, so 7597 is in the sequence.
Programs
-
Mathematica
Select[Range[7600],DivisorSigma[1,#]==7776&] (* Harvey P. Dale, Jun 04 2016 *)
-
PARI
for(i=1,t=6^5, sigma(i)==t & print1(i",")) \\ M. F. Hasler, Dec 09 2009
Formula
Extensions
Minor edits, keywords added, and values checked with given PARI code by M. F. Hasler, Dec 09 2009
Comments