OFFSET
0,5
COMMENTS
In He and Słowik, there is a typing error since T(5,1) is equal to 31 and not to 421.
LINKS
Tian-Xiao He and Roksana Słowik, Total Positivity of Almost-Riordan Arrays, arXiv:2406.03774 [math.CO], 2024. See p. 19.
FORMULA
T(n,n-1) = A016789(n-2).
EXAMPLE
The triangle begins as:
1;
1, 1;
1, 2, 1;
1, 4, 5, 1;
1, 10, 20, 8, 1;
1, 31, 78, 45, 11, 1;
1, 110, 310, 224, 79, 14, 1;
...
MATHEMATICA
T[n_, 0]:=1; T[n_, k_]:=SeriesCoefficient[2/((1-x)(1+x+Sqrt[5x^2-6x+1]))((1-3x-Sqrt[5x^2-6x+1])/(2x))^(k-1), {x, 0, n-1}]; Table[T[n, k], {n, 0, 12}, {k, 0, n}]//Flatten
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Stefano Spezia, Jun 16 2024
STATUS
approved