OFFSET
1,4
COMMENTS
Row lengths are A066328.
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 Look-and-Say partition of a multiset or partition y is obtained by interchanging parts with multiplicities. For example, starting with (3,2,2,1,1) we get (2,2,2,1,1,1), the multiset union of ((1,1,1),(2,2),(2)).
EXAMPLE
The prime indices of 24 are (2,1,1,1), with Look-and-Say partition (3,1,1), so row 24 is (3,1,1).
The prime indices of 36 are (2,2,1,1), with Look-and-Say partition (2,2,2), so row 36 is (2,2,2).
Triangle begins:
1: (empty)
2: 1
3: 1 1
4: 2
5: 1 1 1
6: 1 1 1
7: 1 1 1 1
8: 3
9: 2 2
10: 1 1 1 1
11: 1 1 1 1 1
12: 2 1 1
13: 1 1 1 1 1 1
14: 1 1 1 1 1
15: 1 1 1 1 1
16: 4
17: 1 1 1 1 1 1 1
18: 2 2 1
19: 1 1 1 1 1 1 1 1
MATHEMATICA
Table[Sort[Join@@Cases[FactorInteger[n], {p_, k_}:>ConstantArray[k, PrimePi[p]]]]//Reverse, {n, 30}]
CROSSREFS
KEYWORD
nonn,tabf,new
AUTHOR
Gus Wiseman, Feb 28 2025
STATUS
approved