A360253 Numbers for which the prime indices have lesser mean than the distinct prime indices.
12, 20, 24, 28, 40, 44, 45, 48, 52, 56, 60, 63, 68, 72, 76, 80, 84, 88, 92, 96, 99, 104, 112, 116, 117, 120, 124, 126, 132, 135, 136, 140, 144, 148, 152, 153, 156, 160, 164, 168, 171, 172, 175, 176, 180, 184, 188, 189, 192, 198, 200, 204, 207, 208, 212, 220
Offset: 1
Keywords
Examples
The terms together with their prime indices begin: 12: {1,1,2} 20: {1,1,3} 24: {1,1,1,2} 28: {1,1,4} 40: {1,1,1,3} 44: {1,1,5} 45: {2,2,3} 48: {1,1,1,1,2} 52: {1,1,6} 56: {1,1,1,4} 60: {1,1,2,3} 63: {2,2,4} 68: {1,1,7} 72: {1,1,1,2,2} For example, the prime indices of 350 are {1,3,3,4} with mean 11/4, and the distinct prime indices are {1,3,4} with mean 8/3, so 350 is not in the sequence.
Crossrefs
These partitions are counted by A360251.
Programs
-
Mathematica
prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Mean[prix[#]]
Comments