A383113 Numbers whose prime indices have more than one permutation with all distinct run-lengths.
12, 18, 20, 24, 28, 40, 44, 45, 48, 50, 52, 54, 56, 63, 68, 72, 75, 76, 80, 88, 92, 96, 98, 99, 104, 108, 112, 116, 117, 124, 135, 136, 144, 147, 148, 152, 153, 160, 162, 164, 171, 172, 175, 176, 184, 188, 189, 192, 200, 207, 208, 212, 216, 224, 232, 236, 242
Offset: 1
Keywords
Examples
The prime indices of 360 are {1,1,1,2,2,3}, with six permutations with all distinct run-lengths: (1,1,1,2,2,3) (1,1,1,3,2,2) (2,2,1,1,1,3) (2,2,3,1,1,1) (3,1,1,1,2,2) (3,2,2,1,1,1) so 360 is in the sequence. The terms together with their prime indices begin: 12: {1,1,2} 18: {1,2,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} 50: {1,3,3} 52: {1,1,6} 54: {1,2,2,2} 56: {1,1,1,4} 63: {2,2,4} 68: {1,1,7} 72: {1,1,1,2,2} 75: {2,3,3} 76: {1,1,8} 80: {1,1,1,1,3}
Crossrefs
Programs
-
Mathematica
Select[Range[100], Length[Select[Permutations[PrimePi/@Join @@ ConstantArray@@@FactorInteger[#]], UnsameQ@@Length/@Split[#]&]]>1&]
Comments