A332426 Number of unordered pairs of non-selfintersecting paths with nodes that cover all vertices of a convex n-gon.
0, 3, 30, 210, 1260, 6944, 36288, 182880, 897600, 4316928, 20427264, 95373824, 440294400, 2013020160, 9126248448, 41069371392, 183607050240, 816037560320, 3607758766080, 15874168848384, 69544044134400, 303465064562688
Offset: 3
Examples
a(5)=30 since one of the paths has to be a segment connecting two vertices (10 choices) and the other path will connect the remaining vertices in one of three ways.
Links
- Index entries for linear recurrences with constant coefficients, signature (18,-132,504,-1056,1152,-512).
Programs
-
Maple
gf := ((exp(2*x)-1)*x)^2/32: ser := series(gf, x, 32): seq(n!*coeff(ser, x, n), n=3..24); # Peter Luschny, Mar 01 2020
Formula
a(n) = n*(n-1)*2^(n-6)*(2^(n-3)-1).
From Stefano Spezia, Feb 12 2020: (Start)
O.g.f.: x^4*(3 - 24*x + 66*x^2 - 72*x^3 + 32*x^4)/(1 - 6*x + 8*x^2)^3.
E.g.f.: (exp(2*x) - 1)^2*x^2/32.
a(n) = 18*a(n-1) - 132*a(n-2) + 504*a(n-3) - 1056*a(n-4) + 1152*a(n-5) - 512*a(n-6) for n > 8.
(End)
Comments