A363944 Mean of the multiset of prime indices of n, rounded up.
0, 1, 2, 1, 3, 2, 4, 1, 2, 2, 5, 2, 6, 3, 3, 1, 7, 2, 8, 2, 3, 3, 9, 2, 3, 4, 2, 2, 10, 2, 11, 1, 4, 4, 4, 2, 12, 5, 4, 2, 13, 3, 14, 3, 3, 5, 15, 2, 4, 3, 5, 3, 16, 2, 4, 2, 5, 6, 17, 2, 18, 6, 3, 1, 5, 3, 19, 3, 6, 3, 20, 2, 21, 7, 3, 4, 5, 3, 22, 2, 2, 7
Offset: 1
Keywords
Examples
The prime indices of 360 are {1,1,1,2,2,3}, with mean 3/2, so a(360) = 2.
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]]; meanup[y_]:=If[Length[y]==0,0,Ceiling[Mean[y]]]; Table[meanup[prix[n]],{n,100}]
Comments