login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A078175 Numbers with an integer arithmetic mean of all prime factors. 47
2, 3, 4, 5, 7, 8, 9, 11, 13, 15, 16, 17, 19, 20, 21, 23, 25, 27, 29, 31, 32, 33, 35, 37, 39, 41, 42, 43, 44, 47, 49, 50, 51, 53, 55, 57, 59, 60, 61, 64, 65, 67, 68, 69, 71, 73, 77, 78, 79, 81, 83, 85, 87, 89, 91, 92, 93, 95, 97, 101, 103, 105, 107, 109, 110, 111, 112, 113 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A001414(a(n)) == 0 modulo A001222(a(n)).
LINKS
EXAMPLE
2100=2*2*3*5*5*7: (2+2+3+5+5+7)/6=4, therefore 2100 is a term.
MATHEMATICA
sopfr[n_] := If[n == 1, 0, Total[Times @@@ FactorInteger[n]]];
filterQ[n_] := Divisible[sopfr[n], PrimeOmega[n]];
Select[Range[2, 1000], filterQ] (* Jean-François Alcover, Apr 06 2021 *)
iamQ[n_]:=IntegerQ[Mean[Flatten[Table[#[[1]], #[[2]]]&/@ FactorInteger[ n]]]]; Select[Range[2, 150], iamQ] (* Harvey P. Dale, Jun 23 2021 *)
PROG
(Haskell)
a078175 n = a078175_list !! (n-1)
a078175_list = filter (\x -> (a001414 x) `mod` (a001222 x) == 0) [2..]
-- Reinhard Zumkeller, Nov 20 2011
CROSSREFS
Subsequences: A000040, A000079, A200612.
Sequence in context: A293205 A046687 A175418 * A213715 A360552 A078174
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 20 2002
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)