A238160
A skewed version of triangular array A029653.
Original entry on oeis.org
1, 0, 2, 0, 1, 2, 0, 0, 3, 2, 0, 0, 1, 5, 2, 0, 0, 0, 4, 7, 2, 0, 0, 0, 1, 9, 9, 2, 0, 0, 0, 0, 5, 16, 11, 2, 0, 0, 0, 0, 1, 14, 25, 13, 2, 0, 0, 0, 0, 0, 6, 30, 36, 15, 2, 0, 0, 0, 0, 0, 1, 20, 55, 49, 17, 2, 0, 0, 0, 0, 0, 0, 7, 50, 91, 64, 19, 2, 0, 0, 0, 0, 0
Offset: 0
Triangle begins:
1;
0, 2;
0, 1, 2;
0, 0, 3, 2;
0, 0, 1, 5, 2;
0, 0, 0, 4, 7, 2;
0, 0, 0, 1, 9, 9, 2;
0, 0, 0, 0, 5, 16, 11, 2;
0, 0, 0, 0, 1, 14, 25, 13, 2;
0, 0, 0, 0, 0, 6, 30, 36, 15, 2;
0, 0, 0, 0, 0, 1, 20, 55, 49, 17, 2;
0, 0, 0, 0, 0, 0, 7, 50, 91, 64, 19, 2;
...
A241188
Triangle T(n,s) of Dynkin type D_n read by rows (n >= 2, 0 <= s <= n).
Original entry on oeis.org
1, 2, 1, 1, 3, 5, 5, 1, 4, 9, 16, 20, 1, 5, 14, 30, 55, 77, 1, 6, 20, 50, 105, 196, 294, 1, 7, 27, 77, 182, 378, 714, 1122, 1, 8, 35, 112, 294, 672, 1386, 2640, 4290, 1, 9, 44, 156, 450, 1122, 2508, 5148, 9867, 16445
Offset: 2
Triangle begins:
1, 2, 1,
1, 3, 5, 5,
1, 4, 9, 16, 20,
1, 5, 14, 30, 55, 77,
1, 6, 20, 50, 105, 196, 294,
1, 7, 27, 77, 182, 378, 714, 1122,
1, 8, 35, 112, 294, 672, 1386, 2640, 4290,
1, 9, 44, 156, 450, 1122, 2508, 5148, 9867, 16445,
...
- M. A. A. Obaid, S. K. Nauman, W. M. Fakieh, C. M. Ringel, The numbers of support-tilting modules for a Dynkin algebra, 2014.
- M. A. A. Obaid, S. K. Nauman, W. M. Fakieh, C. M. Ringel, The numbers of support-tilting modules for a Dynkin algebra, arXiv:1403.5827 [math.RT], 2014 and J. Int. Seq. 18 (2015) 15.10.6.
See
A009766 for the case of type A.
See
A059481 for the case of type B/C.
-
f[t_, s_] := Binomial[t, s] (s + t)/t;
T[, 0] = 1; T[n, n_] := f[2 n - 2, n - 2]; T[n_, s_] := f[n + s - 2, s];
Table[T[n, s], {n, 2, 9}, {s, 0, n}] // Flatten (* Jean-François Alcover, Feb 12 2019 *)
Comments