OFFSET
1,2
COMMENTS
Also n such that the squarefree part of n (A007913) equals the squarefree part of sigma(n), A355928.
Also n such that abundancy of n, sigma(n)/n is a rational square. - Michel Marcus, Oct 06 2013
See A230043, resp. A230538, for n whose abundancy is a rational cube, resp. fourth power. - M. F. Hasler, Nov 02 2013
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..1896 (terms < 4*10^12, first 500 terms from Donovan Johnson)
MATHEMATICA
Select[Range[1000000], IntegerQ[Sqrt[# DivisorSigma[1, #]]]&] (* Harvey P. Dale, Dec 24 2012 *)
PROG
(PARI) for(n=1, 1000000, if(issquare(n*sigma(n)), print1(n, ", ")))
(PARI) isok(n) = issquare(sigma(n)/n); \\ Michel Marcus, Oct 06 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 05 2002
EXTENSIONS
More terms from Rick L. Shepherd, Apr 07 2002
STATUS
approved