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”).

A174894
Numbers such that the arithmetic mean of their distinct prime factors and the arithmetic mean of all of their prime factors are both integers.
4
2, 3, 4, 5, 7, 8, 9, 11, 13, 15, 16, 17, 19, 21, 23, 25, 27, 29, 31, 32, 33, 35, 37, 39, 41, 42, 43, 47, 49, 51, 53, 55, 57, 59, 61, 64, 65, 67, 69, 71, 73, 77, 78, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 101
OFFSET
1,1
COMMENTS
Subsequence of A078174 and A078175.
Complement of A176552. [From Jaroslav Krizek, Apr 21 2010]
LINKS
EXAMPLE
For a(11) = 16: 16 = 2^4; both (2+2+2+2)/4 and 2/1 are integers.
MATHEMATICA
mdmaQ[n_]:=With[{fi=FactorInteger[n]}, AllTrue[{Mean[Flatten[Table[#[[1]], #[[2]]]&/@fi]], Mean[fi[[;; , 1]]]}, IntegerQ]]; Select[Range[ 2, 110], mdmaQ] (* Harvey P. Dale, Nov 16 2024 *)
CROSSREFS
Sequence in context: A360552 A373852 A078174 * A275616 A088948 A369096
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Apr 01 2010
EXTENSIONS
Definition clarified by Harvey P. Dale, Nov 16 2024
STATUS
approved