OFFSET
0,6
COMMENTS
Rotations and reflections are counted separately.
By "2*n-sided polygons" we mean the polygons that can be drawn by connecting 2*n equally spaced points on a circle.
T(0,0)=0 and T(0,1)=1 by convention.
The sequence is limited to even-sided polygons, since all odd-sided polygons have no side passing through the center.
LINKS
Ludovic Schwob, Table of n, a(n) for n = 0..494
Ludovic Schwob, Illustration of T(3,k), 0≤k≤3.
FORMULA
T(n,n) = 2^(n-1) * (n-1)! for all n >= 1.
T(n,0) = A307923(n) for all n>=1.
T(n,k) = binomial(n,k)* Sum_{i=k..n} (-1)^(i-k)*binomial(n-k,i-k)*(2n-1-i)!*2^(i-1), for n>=2 and 0<=k<=n.
EXAMPLE
Triangle begins:
0;
0, 1;
1, 0, 2;
16, 24, 12, 8;
744, 960, 576, 192, 48;
MAPLE
T := (n, k) -> `if`(n<2, k, 2^(k-1)*binomial(n, k)*(2*n-k-1)!*hypergeom([k-n], [k-2*n+ 1], -2)):
seq(seq(simplify(T(n, k)), k=0..n), n=0..7); # Peter Luschny, Jan 07 2020
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Ludovic Schwob, Dec 23 2019
STATUS
approved