OFFSET
0,6
COMMENTS
A noncrossing path set is a noncrossing forest (A054727) where each tree is restricted to being a path. Paths are constructed using noncrossing line segments between the vertices of a regular n-gon. Isolated vertices are not allowed.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..2600 (rows 0..100)
FORMULA
G.f.: (1/x) * Series_Reversion( x*(1 - 2*x)^2/(1 - 4*x + (4 + y)*x^2 - y*x^3) ).
EXAMPLE
Triangle begins:
1;
0;
0, 1;
0, 3;
0, 8, 2;
0, 20, 15;
0, 48, 75, 5;
0, 112, 308, 63;
0, 256, 1120, 476, 14;
0, 576, 3744, 2772, 252;
0, 1280, 11760, 13680, 2580, 42;
0, 2816, 35200, 60060, 19635, 990;
...
See examples in A303730.
PROG
(PARI)
T(n)=[Vecrev(p) | p<-Vec(serreverse(x*(1 - 2*x)^2/(1 - 4*x + (4 + y)*x^2 - y*x^3) + O(x^(n+2))))]
{ my(A=T(11)); for(i=1, #A, print(A[i])) }
CROSSREFS
Row sums are A303730.
KEYWORD
nonn,tabf
AUTHOR
Andrew Howroyd, Nov 27 2025
STATUS
approved
