A383100 Numbers whose prime indices have no permutation with all equal run-sums.
6, 10, 14, 15, 18, 20, 21, 22, 24, 26, 28, 30, 33, 34, 35, 38, 39, 42, 44, 45, 46, 50, 51, 52, 54, 55, 56, 57, 58, 60, 62, 65, 66, 68, 69, 70, 72, 74, 75, 76, 77, 78, 80, 82, 84, 85, 86, 87, 88, 90, 91, 92, 93, 94, 95, 96, 98, 99, 100, 102, 104, 105, 106, 108
Offset: 1
Keywords
Examples
The prime indices of 18 are {1,2,2}, with permutations (1,2,2), (2,1,2), (2,2,1), with run sums (1,4), (2,1,2), (4,1) respectively, so 18 is in the sequence. The terms together with their prime indices begin: 6: {1,2} 10: {1,3} 14: {1,4} 15: {2,3} 18: {1,2,2} 20: {1,1,3} 21: {2,4} 22: {1,5} 24: {1,1,1,2} 26: {1,6} 28: {1,1,4} 30: {1,2,3} 33: {2,5} 34: {1,7} 35: {3,4} 38: {1,8} 39: {2,6} 42: {1,2,4} 44: {1,1,5} 45: {2,2,3} 46: {1,9} 50: {1,3,3}
Crossrefs
Programs
-
Mathematica
Select[Range[100], Length[Select[Permutations[PrimePi/@Join @@ ConstantArray@@@FactorInteger[#]], SameQ@@Total/@Split[#]&]]==0&]
Comments