OFFSET
0,8
COMMENTS
Each path consists of straight line segments connecting one or more nodes on the circle. Each of the n nodes is used by exactly one path. Although each path is noncrossing, different paths are allowed to intersect.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1325 (rows 0..50)
FORMULA
Column k is the inverse binomial transform of column k of A390897.
E.g.f.: exp(y*x*(exp(2*x) + 3)/4).
E.g.f. of column k: (x*exp(2*x) + 3*x)^k/(4^k*k!).
EXAMPLE
Triangle begins:
1;
0, 1;
0, 1, 1;
0, 3, 3, 1;
0, 8, 15, 6, 1;
0, 20, 70, 45, 10, 1;
0, 48, 330, 315, 105, 15, 1;
0, 112, 1596, 2205, 1015, 210, 21, 1;
0, 256, 7840, 15624, 9625, 2660, 378, 28, 1;
...
PROG
(PARI) T(n) = [Vecrev(p) | p<-Vec(serlaplace( exp(y*x*(exp(2*x + O(x^n)) + 3)/4) ))];
{ my(A=T(8)); for(i=1, #A, print(A[i])) }
CROSSREFS
Row sums are A390895.
KEYWORD
nonn,tabl
AUTHOR
Andrew Howroyd, Nov 23 2025
STATUS
approved
