OFFSET
0,3
COMMENTS
a(n) is the number of sets of noncrossing paths that cover n nodes arranged in a circle with one node paths allowed. 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.
Also, a(n) is the number of sets of noncrossing paths whose nodes are a subset of n nodes arranged in a circle with one node paths disallowed. In this case, one node paths are disallowed, but not every node needs to be covered. The first definition corresponds to the triangle A390894 and this one to the triangle A390896.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..200
FORMULA
EXAMPLE
The a(3) = 7 set of paths are: {123}, {132}, {213}, {12, 3}, {13, 2}, {23, 1}, {1, 2, 3}.
PROG
(PARI) seq(n)=Vec(serlaplace(exp(x*(exp(2*x + O(x^n)) + 3)/4)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew Howroyd, Nov 23 2025
STATUS
approved
