A344653 Every permutation of the prime factors of n has a consecutive monotone triple, i.e., a triple (..., x, y, z, ...) such that either x <= y <= z or x >= y >= z.
8, 16, 24, 27, 32, 40, 48, 54, 56, 64, 80, 81, 88, 96, 104, 112, 125, 128, 135, 136, 144, 152, 160, 162, 176, 184, 189, 192, 208, 224, 232, 240, 243, 248, 250, 256, 270, 272, 288, 296, 297, 304, 320, 324, 328, 336, 343, 344, 351, 352, 368, 375, 376, 378, 384
Offset: 1
Keywords
Examples
The sequence of terms together with their prime indices begins: 8: {1,1,1} 16: {1,1,1,1} 24: {1,1,1,2} 27: {2,2,2} 32: {1,1,1,1,1} 40: {1,1,1,3} 48: {1,1,1,1,2} 54: {1,2,2,2} 56: {1,1,1,4} 64: {1,1,1,1,1,1} 80: {1,1,1,1,3} 81: {2,2,2,2} 88: {1,1,1,5} 96: {1,1,1,1,1,2} For example, 36 has prime indices (1,1,2,2), which has the two wiggly permutations (1,2,1,2) and (2,1,2,1), so 36 is not in the sequence.
Comments