OFFSET
0,6
COMMENTS
Each path consists of straight line segments connecting two 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. This differs from the noncrossing path sets studied in A390908.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..2600 (rows 0..100)
FORMULA
EXAMPLE
Triangle begins:
1;
0;
0, 1;
0, 3;
0, 8, 3;
0, 20, 30;
0, 48, 210, 15;
0, 112, 1260, 315;
0, 256, 6944, 4200, 105;
0, 576, 36288, 45360, 3780;
0, 1280, 182880, 433440, 81900, 945;
0, 2816, 897600, 3825360, 1386000, 51975;
...
PROG
(PARI) T(n) = { my(v=Vec(serlaplace( exp(y*x*(exp(2*x + O(x^n)) - 1)/4) ))); vector(#v, i, Vecrev(v[i], (i+1)\2)) }
{ my(A=T(10)); for(i=1, #A, print(A[i])) }
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Andrew Howroyd, Nov 23 2025
STATUS
approved
