A342595 Irregular triangle of A342592 read by rows arranged first by length of the width pattern and then lexicographically within blocks of patterns of equal length.
1, 1, 0, 1, 1, 2, 1, 1, 0, 1, 0, 1, 1, 2, 1, 2, 1, 1, 2, 3, 2, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 2, 1, 0, 1, 1, 2, 1, 0, 1, 2, 1, 1, 2, 1, 2, 1, 2, 1, 1, 2, 3, 2, 3, 2, 1, 1, 2, 3, 4, 3, 2, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 2, 1
Offset: 1
Examples
The number of entries through the center in a row of the triangle below equals the number of odd divisors of any number that has that pattern of widths. The pattern in row 10 of the triangle below, realized first by n = 30 which labels the row is the smallest number with width pattern (1 2 1 2 1 2 1); 42, 54 and 66 are the other numbers less than 100 realizing that pattern. The triangle below lists the first 21 distinct symmetric width patterns in the order described above. The smallest number whose symmetric representation of sigma has the width pattern of that row is listed as first column (see A342596). All possible symmetric width patterns of lengths 1, 3, 5 and 7 are realized in the triangle below; their respective counts are A001405(1,2,3,4) = (1,2,3,6). 1 1 3 1 0 1 6 1 2 1 9 1 0 1 0 1 18 1 2 1 2 1 72 1 2 3 2 1 21 1 0 1 0 1 0 1 15 1 0 1 2 1 0 1 78 1 2 1 0 1 2 1 30 1 2 1 2 1 2 1 60 1 2 3 2 3 2 1 120 1 2 3 4 3 2 1 81 1 0 1 0 1 0 1 0 1 162 1 2 1 2 1 2 1 2 1 648 1 2 3 2 3 2 3 2 1 1296 1 2 3 4 3 4 3 2 1 5184 1 2 3 4 5 4 3 2 1 147 1 0 1 0 1 0 1 0 1 0 1 63 1 0 1 0 1 2 1 0 1 0 1 75 1 0 1 2 1 0 1 2 1 0 1 45 1 0 1 2 1 2 1 2 1 0 1
Programs
-
Mathematica
(* function a341969[ ] is defined in A341969 *) lexicographic[s1_, s2_] := Module[{k=1}, While[s1[[2, k]]==s2[[2, k]], k++]; s1[[2,k]]
Comments