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 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..2600 (rows 0..100)
FORMULA
EXAMPLE
Triangle begins:
1;
1;
1, 1;
1, 6,
1, 26, 3;
1, 100, 45,
1, 363, 435, 15;
1, 1274, 3465, 420;
1, 4372, 24794, 7140, 105;
1, 14760, 165942, 95760, 4725;
1, 49205, 1061730, 1116990, 124425, 945;
...
PROG
(PARI) T(n) = [Vecrev(p) | p<-Vec(serlaplace( exp(x + y*x*(exp(2*x + O(x^n)) - 1)/4) ))];
{ my(A=T(10)); for(i=1, #A, print(A[i])) }
CROSSREFS
Row sums are A390895.
KEYWORD
nonn,tabf
AUTHOR
Andrew Howroyd, Nov 23 2025
STATUS
approved
