OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Distinct Prime Factors
EXAMPLE
5 is in the sequence because the distinct prime factors of 2, 3, 4, and 5 are 2, 3, 2 and 5 respectively and their average (2 + 3 + 2 + 5) / 4 = 3 is an integer. - David A. Corneth, Apr 26 2018
MATHEMATICA
s = t = 0; k = 2; lst = {}; While[k < 1000000000, p = #[[1]] & /@ FactorInteger@ k; s = s + Plus @@ p; t = t + Length@ p; If[ Mod[s, t] == 0, AppendTo[lst, k]]; k++]; lst (* Robert G. Wilson v, Apr 26 2018 *)
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Ilya Gutkovskiy, Apr 24 2018
EXTENSIONS
a(5) from Daniel Suteu, Apr 24 2018
a(6)-a(7) from Giovanni Resta, Apr 26 2018
STATUS
approved