OFFSET
1,1
COMMENTS
A North-East path is a path from (0,0) to (n,n) using steps (1,0) and (0,1). A cyclic descent is a North step followed by an East step, where the last and first step is a cyclic descent if the path ends with a North step and starts with an East step.
The sum of the entries in row n is equal to binomial(2n,n).
I conjecture that the polynomial Sum_{k=1...n} T(n,k) t^k is real-rooted for all n.
LINKS
Per Alexandersson, Svante Linusson, Samu Potka, and Joakim Uhlin, Refined Catalan and Narayana cyclic sieving, arXiv:2010.11157 [math.CO], 2020.
FORMULA
T(n,k) = 2*binomial(n,k)*binomial(n-1,k-1).
T(n,k) = 2 * A103371(n-1,k-1). - Alois P. Heinz, Jun 02 2020
EXAMPLE
The table starts as
2,
4, 2
6, 12, 2
8, 36, 24, 2
10, 80, 120, 40, 2
12, 150, 400, 300, 60, 2
MATHEMATICA
T[n_, k_] = 2 Binomial[n, k] Binomial[n - 1, k - 1];
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Per W. Alexandersson, Jun 02 2020
STATUS
approved