OFFSET
1,1
COMMENTS
EXAMPLE
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}
MATHEMATICA
Select[Range[100], Length[Select[Permutations[PrimePi/@Join @@ ConstantArray@@@FactorInteger[#]], UnsameQ@@Length/@Split[#]&]]>1&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 20 2025
STATUS
approved
