A283368 Irregular triangle read by rows: T(n,k) = number of heights for the horizontal elements of the Dyck paths for the symmetric representation of sigma(n) that are listed in the corresponding positions of the triangle of A259176.
1, 2, 3, 2, 4, 3, 5, 3, 6, 5, 4, 7, 5, 4, 8, 6, 5, 9, 7, 5, 10, 8, 7, 6, 11, 8, 7, 6, 12, 10, 9, 7, 13, 10, 9, 7, 14, 11, 9, 8, 15, 12, 11, 10, 8, 16, 13, 12, 11, 9, 17, 13, 12, 11, 9, 18, 15, 13, 12, 10, 19, 15, 13, 12, 10, 20, 16, 15, 13, 11, 21, 17, 16, 15, 14, 11
Offset: 1
Examples
The first horizontal leg of the symmetric representation of sigma(15) is at y-coordinate 15 and has length 8, and row 15 has 5 entries so that T(15,1) = 15 and T(15,5) = 8. The first 16 rows of the irregular triangle: 1 2 3 2 4 3 5 3 6 5 4 7 5 4 8 6 5 9 7 5 10 8 7 6 11 8 7 6 12 10 9 7 13 10 9 7 14 11 9 8 15 12 11 10 8 16 13 12 11 9
Programs
-
Mathematica
(* function f[n,k] and its support functions are defined in A237593 *) a283368[n_, k_] := n - Sum[f[n, 2i], {i, k-1}] TableForm[Table[a283368[n, k], {n, 1, 16}, {k, 1, row[n]}]] (* triangle *) Flatten[Table[a283368[n, k], {n, 1, 21}, {k, 1, row[n]}]] (* sequence data *)
Comments