login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A303482
Numbers k such that the average of all distinct prime factors of all positive integers <= k is an integer.
2
2, 5, 81, 10742, 10130527, 1041972864, 23292549600
OFFSET
1,1
COMMENTS
Numbers k such that A013939(k)|A024924(k).
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 *)
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