OFFSET
1,1
COMMENTS
This sequence is motivated by the short fate of A134382.
LINKS
Michel Marcus, Table of n, a(n) for n = 1..10000
EXAMPLE
For n=20, sigma(20)/(d(20)*sopf(20)) = 42/(6*7) = 1, an integer, so 20 is a term.
MATHEMATICA
f[p_, e_] := (p^(e + 1) - 1)/((e + 1)*(p - 1)); Select[Range[2, 2100], IntegerQ[ Times @@ (f @@@ (fct = FactorInteger[#])) / Plus @@ (fct[[;; , 1]])] &] (* Amiram Eldar, Oct 03 2019 *)
PROG
(PARI) sopf(f) = sum(j=1, #f~, f[j, 1]); \\ A008472
isok(m) = if (m>1, my(f=factor(m)); (sigma(f) % (numdiv(f)*sopf(f))) == 0);
(Magma) [k: k in [2..2100]|IsIntegral(DivisorSigma(1, k)/(#Divisors(k)*(&+PrimeDivisors(k))))]; // Marius A. Burtea, Oct 03 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Oct 03 2019
STATUS
approved