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!)
A067629 The average of the prime factors of n, rounded off to the nearest integer (rounding up if there's a choice), with each factor weighted according to its frequency of occurrence in the prime factorization. 9

%I #11 Jul 19 2023 02:29:19

%S 2,3,2,5,3,7,2,3,4,11,2,13,5,4,2,17,3,19,3,5,7,23,2,5,8,3,4,29,3,31,2,

%T 7,10,6,3,37,11,8,3,41,4,43,5,4,13,47,2,7,4,10,6,53,3,8,3,11,16,59,3,

%U 61,17,4,2,9,5,67,7,13,5,71,2,73,20,4,8,9,6,79,3,3,22,83,4,11,23,16,4

%N The average of the prime factors of n, rounded off to the nearest integer (rounding up if there's a choice), with each factor weighted according to its frequency of occurrence in the prime factorization.

%H Hugo Pfoertner, <a href="/A067629/b067629.txt">Table of n, a(n) for n = 2..10000</a>

%e 24 = 2^3 * 3^1, so the average of the prime factors = (2 + 2 + 2 + 3)/4, which rounded = 2. So a(24) = 2.

%p with(numtheory): for n from 2 to 150 do printf(`%d,`,round(sum(ifactors(n)[2][i][1]*ifactors(n)[2][i][2], i=1..nops(ifactors(n)[2]))/sum(ifactors(n)[2][i][2], i=1..nops(ifactors(n)[2]) ) )) od:

%t a[n_] := Floor[1/2+(Plus@@(Times@@#&/@(fn=FactorInteger[n])))/(Plus@@Last/@fn)]

%Y Cf. A078175, A126594.

%K easy,nonn

%O 2,1

%A _Joseph L. Pe_, Feb 02 2002

%E Edited by _Dean Hickerson_ and _James A. Sellers_, Feb 12 2002

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 July 21 12:49 EDT 2024. Contains 374474 sequences. (Running on oeis4.)