OFFSET
0,8
FORMULA
T(n,k) = [k <= n] * if(k=0, 1, A000108(n-k)) for 0 <= k <= n, where [ ] is the Iverson bracket.
Bivariate o.g.f.: 1/(1 - x) + c(x) * x*y/(1 - x*y), where c(x) is the o.g.f. of A000108. - Petros Hadjicostas, Aug 03 2020
EXAMPLE
Triangle T(n,k) (with rows n >= 0 and columns k = 0..n) begins
1;
1, 1;
1, 1, 1;
1, 2, 1, 1;
1, 5, 2, 1, 1;
1, 14, 5, 2, 1, 1;
1, 42, 14, 5, 2, 1, 1;
1, 132, 42, 14, 5, 2, 1, 1;
1, 429, 132, 42, 14, 5, 2, 1, 1;
1, 1430, 429, 132, 42, 14, 5, 2, 1, 1;
...
CROSSREFS
KEYWORD
AUTHOR
Paul Barry, Jan 24 2009
STATUS
approved