OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798.
The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k). This gives a bijective correspondence between positive integers and integer partitions.
The sequence of runs of a sequence consists of its maximal consecutive constant subsequences when read left-to-right. For example, the runs of (2,2,1,1,1,3,2,2) are (2,2), (1,1,1), (3), (2,2), with sums (4,3,3,4).
LINKS
Mathematics Stack Exchange, What is a sequence run? (answered 2011-12-01)
EXAMPLE
The terms together with their prime indices begin:
12: {1,1,2}
24: {1,1,1,2}
40: {1,1,1,3}
45: {2,2,3}
48: {1,1,1,1,2}
60: {1,1,2,3}
63: {2,2,4}
80: {1,1,1,1,3}
84: {1,1,2,4}
90: {1,2,2,3}
96: {1,1,1,1,1,2}
112: {1,1,1,1,4}
120: {1,1,1,2,3}
126: {1,2,2,4}
132: {1,1,2,5}
135: {2,2,2,3}
144: {1,1,1,1,2,2}
156: {1,1,2,6}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], !Less@@Total/@Split[primeMS[#]]&]
CROSSREFS
These are the indices of rows in A354584 that are not strictly increasing.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 19 2022
STATUS
approved