OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
The sum of square divisors of 2352 is sigma_2(2352)=8357910; prime divisors of 2352 are 2,3,7 and (8357910)/(2^2+3^2+7^2)=8357910/62=134805 hence 2352 is in the sequence.
MAPLE
filter:= proc(n) (numtheory:-sigma[2](n)/add(p^2, p=numtheory:-factorset(n)))::integer end proc:
select(filter, [$2..10000]); # Robert Israel, Jul 10 2018
MATHEMATICA
Select[Range[2, 5000], Divisible[DivisorSigma[2, #], Total[FactorInteger[#][[All, 1]]^2]]&] (* Harvey P. Dale, Apr 02 2018 *)
PROG
(PARI) for(n=2, 10000, if(sumdiv(n, d, d^2)%sumdiv(n, d, isprime(d)*d^2)==0, print1(n, ", ")))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 07 2002
STATUS
approved