OFFSET
1,1
COMMENTS
A number's prime signature (row n of A124010) is the sequence of positive exponents in its prime factorization.
EXAMPLE
The sequence of terms together with their prime indices begins:
90: {1,2,2,3}
126: {1,2,2,4}
198: {1,2,2,5}
234: {1,2,2,6}
270: {1,2,2,2,3}
300: {1,1,2,3,3}
306: {1,2,2,7}
342: {1,2,2,8}
350: {1,3,3,4}
378: {1,2,2,2,4}
414: {1,2,2,9}
522: {1,2,2,10}
525: {2,3,3,4}
540: {1,1,2,2,2,3}
550: {1,3,3,5}
558: {1,2,2,11}
588: {1,1,2,4,4}
594: {1,2,2,2,5}
600: {1,1,1,2,3,3}
630: {1,2,2,3,4}
For example, the prime signature of 540 is (2,3,1), so 540 is in the sequence.
MATHEMATICA
Select[Range[1000], !Or[LessEqual@@Last/@FactorInteger[#], GreaterEqual@@Last/@FactorInteger[#]]&]
CROSSREFS
The version for run-lengths of partitions is A332641.
The version for run-lengths of compositions is A332833.
The version for compositions is A332834.
Prime signature is A124010.
Unimodal compositions are A001523.
Partitions with weakly increasing run-lengths are A100883.
Partitions with weakly increasing or decreasing run-lengths are A332745.
Compositions with weakly increasing or decreasing run-lengths are A332835.
Compositions with weakly increasing run-lengths are A332836.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 02 2020
STATUS
approved