A110730 Irregular triangle read by rows in which row n lists n 1's followed by (n-1) 2's followed by (n-3) 3's ... followed by 1 n.
1, 1, 1, 2, 1, 1, 1, 2, 2, 3, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 5, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 6, 6, 7, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3
Offset: 1
Examples
From _Omar E. Pol_, May 08 2021: (Start) Triangle begins: 1; 1, 1, 2; 1, 1, 1, 2, 2, 3; 1, 1, 1, 1, 2, 2, 2, 3, 3, 4; 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 4, 4, 5; 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 6; ... (End)
Programs
-
Mathematica
Flatten@Array[Table[Table[k,#-k+1],{k,#}]&,10] (* Giorgos Kalogeropoulos, Jun 08 2021 *)
Extensions
Name clarified by Omar E. Pol, Jun 08 2021
Comments