A258820 Reversed rows of A178252 presented as diagonals of an irregular triangle.
1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 2, 1, 1, 5, 2, 1, 1, 3, 10, 1, 1, 7, 5, 5, 1, 1, 4, 7, 5, 1, 1, 9, 28, 35, 3, 1, 1, 5, 12, 14, 7, 1, 1, 11, 15, 21, 14, 7, 1, 1, 6, 55, 30, 126, 28, 1, 1, 13, 22, 165, 42, 21, 4, 1
Offset: 0
Examples
The irregular triangle T(n,k) starts n\k 0 1 2 3 4 5 ... 0: 1 1: 1 2: 1 1 3: 1 1 4: 1 3 1 5: 1 2 1 6: 1 5 2 1 7: 1 3 10 1 8: 1 7 5 5 1 9: 1 4 7 5 1 10: 1 9 28 35 3 1 ... reformatted. - _Wolfdieter Lang_, Aug 25 2015
Links
- N. Alexeev, J. Andersen, R. Penner, P. Zograf, Enumeration of chord diagrams on many intervals and their non-orientable analogs, arXiv:1307.0967 [math.CO], 2013-2014.
Programs
-
Mathematica
max = 15; coes = Table[ PadRight[ CoefficientList[ BernoulliB[n, x], x], max], {n, 0, max-1}]; inv = Inverse[coes] // Numerator; t[n_, k_] := inv[[n, k]]; t[n_, k_] /; k == n+1 = 1; Table[t[n-k+1, k], {n, 2, max+1}, {k, 2, Floor[n/2]+1}] // Flatten (* Jean-François Alcover, Jul 22 2015 *)
Comments