A381440 Irregular triangle read by rows where row k is the Look-and-Say partition of the prime indices of n.
1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1
Examples
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
Crossrefs
Programs
-
Mathematica
Table[Sort[Join@@Cases[FactorInteger[n],{p_,k_}:>ConstantArray[k,PrimePi[p]]]]//Reverse,{n,30}]
Comments