OFFSET
2,2
COMMENTS
Every nonempty composition appears as a row exactly once.
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. Here this multiset is regarded as a sequence in weakly increasing order.
Also the reversed augmented differences of the integer partition with Heinz number n, where the augmented differences aug(q) of a sequence q of length k are given by aug(q)_i = q_i - q_{i+1} + 1 if i < k and aug(q)_k = q_k, and the Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k). The non-reversed version is A355534.
LINKS
EXAMPLE
Triangle begins:
2: 1
3: 2
4: 1 1
5: 3
6: 1 2
7: 4
8: 1 1 1
9: 2 1
10: 1 3
11: 5
12: 1 1 2
13: 6
14: 1 4
15: 2 2
16: 1 1 1 1
17: 7
18: 1 2 1
19: 8
20: 1 1 3
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Table[Differences[Prepend[primeMS[n], 1]]+1, {n, 30}]
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, Nov 01 2022
STATUS
approved