A363948 Numbers whose prime indices have mean < 3/2.
2, 4, 8, 12, 16, 24, 32, 48, 64, 72, 80, 96, 128, 144, 160, 192, 256, 288, 320, 384, 432, 448, 480, 512, 576, 640, 768, 864, 896, 960, 1024, 1152, 1280, 1536, 1728, 1792, 1920, 2048, 2304, 2560, 2592, 2688, 2816, 2880, 3072, 3200, 3456, 3584, 3840, 4096, 4608
Offset: 1
Keywords
Examples
The initial terms, prime indices, and means: 2: {1} -> 1 4: {1,1} -> 1 8: {1,1,1} -> 1 12: {1,1,2} -> 4/3 16: {1,1,1,1} -> 1 24: {1,1,1,2} -> 5/4 32: {1,1,1,1,1} -> 1 48: {1,1,1,1,2} -> 6/5 64: {1,1,1,1,1,1} -> 1 72: {1,1,1,2,2} -> 7/5 80: {1,1,1,1,3} -> 7/5 96: {1,1,1,1,1,2} -> 7/6
Crossrefs
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n], {p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Mean[prix[#]]<3/2&]
Comments