OFFSET
1,2
LINKS
Donovan Young, Table of n, a(n) for n = 1..9870 (Rows 1..140).
Donovan Young, A critical quartet for queuing couples, arXiv:2007.13868 [math.CO], 2020.
FORMULA
T(n,k) = n*T(n-1,k) + n*T(n-1,k-1), with T(n,0) = A233481(n) for n > 0.
E.g.f.: x/sqrt(1 - 2*x)/(1 - x*(1 + y)).
EXAMPLE
Triangle begins:
1;
4, 2;
21, 18, 6;
144, 156, 96, 24;
1245, 1500, 1260, 600, 120;
...
For n = 2 and k = 1, let the four vertices be {1,2,3,4}. The marked chord can be either (1,3), and so crossed once by (2,4), or (2,4), and so crossed once by (1,3). Hence T(2,1) = 2.
MATHEMATICA
CoefficientList[Normal[Series[x/Sqrt[1-2*x]/(1-x(1+y)), {x, 0, 10}]]/.{x^n_.->x^n*n!}, {x, y}]
PROG
(PARI)
T(n)={[Vecrev(p) | p<-Vec(serlaplace(x/sqrt(1 - 2*x + O(x^n))/(1 - x*(1 + y))))]}
{ my(A=T(8)); for(n=1, #A, print(A[n])) } \\ Andrew Howroyd, Jul 29 2020
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Donovan Young, Jul 29 2020
STATUS
approved