OFFSET
3,2
FORMULA
T(n,k) = A007318(n,k) for n>=3, 3<=k<=n.
From Peter Bala, Jul 16 2013: (Start)
The following remarks assume an offset of 0.
Riordan array (1/(1 - x)^4, x/(1 - x)).
O.g.f.: 1/(1 - t)^3*1/(1 - (1 + x)*t) = 1 + (4 + x)*t + (10 + 5*x + x^2)*t^2 + ....
E.g.f.: (1/x*d/dt)^3 (exp(t)*(exp(x*t) - 1 - x*t - (x*t)^2/2!)) = 1 + (4 + x)*t + (10 + 5*x + x^2)*t^2/2! + ....
The infinitesimal generator for this triangle has the sequence [4,5,6,...] on the main subdiagonal and 0's elsewhere. (End)
EXAMPLE
First few rows of the triangle are:
1;
4, 1;
10, 5, 1;
20, 15, 6, 1;
35, 35, 21, 7, 1;
56, 70, 56, 28, 8, 1;
...
MAPLE
A104713 := proc(n, k)
binomial(n, k) ;
end proc;
seq(seq( A104713(n, k), k=3..n), n=3..16) ; # R. J. Mathar, Oct 29 2011
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Mar 19 2005
STATUS
approved