OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
The sum of divisors of 132 is sigma(132) = 336; prime divisors of 132 are 2,3,11 and (336)/(2+3+11) = 336/16 = 21 hence 132 is in the sequence.
MATHEMATICA
Select[Range[2, 464], IntegerQ[DivisorSigma[1, #]/Total[First/@FactorInteger[#]]] &] (* Jayanta Basu, May 16 2013 *)
PROG
(PARI) for(n=2, 700, if(sigma(n)%sumdiv(n, d, isprime(d)*d)==0, print1(n, ", ")))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 07 2002
STATUS
approved