OFFSET
0,5
COMMENTS
Each path consists of straight line segments connecting one or more nodes on the circle. Each of the n nodes is used by at most 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 binomial transform of column k of A390894.
E.g.f.: exp(x + y*x*(exp(2*x) + 3)/4).
E.g.f. of column k: exp(x)*(x*exp(2*x) + 3*x)^k/(4^k*k!).
EXAMPLE
Triangle begins:
1;
1, 1;
1, 3, 1;
1, 9, 6, 1;
1, 30, 33, 10, 1;
1, 105, 185, 85, 15, 1;
1, 369, 1050, 695, 180, 21, 1;
1, 1281, 6027, 5600, 1995, 336, 28, 1;
1, 4380, 35014, 45080, 21315, 4816, 574, 36, 1;
...
PROG
(PARI) T(n) = [Vecrev(p) | p<-Vec(serlaplace( exp(x + y*x*(exp(2*x + O(x^n)) + 3)/4) ))];
{ my(A=T(10)); for(i=1, #A, print(A[i])) }
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Andrew Howroyd, Nov 23 2025
STATUS
approved
