OFFSET
2,1
COMMENTS
Row sums are A001610(n-1).
Triangle A034807 (coefficients of Lucas polynomials) with the first column omitted. - Philippe Deléham, Mar 17 2013
T(n,k) is the number of ways to select k knights from a round table of n knights, no two adjacent. - Bert Seghers, Mar 02 2014
REFERENCES
J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, pp. 199
FORMULA
T(n,k) = binomial(n-k,k) + binomial(n-k-1,k-1). - Bert Seghers, Mar 02 2014
EXAMPLE
The table starts in row n=2, column k=1 as:
2;
3;
4, 2;
5, 5;
6, 9, 2;
7, 14, 7;
8, 20, 16, 2;
9, 27, 30, 9;
10, 35, 50, 25, 2;
11, 44, 77, 55, 11;
12, 54, 112, 105, 36, 2;
MATHEMATICA
g[n_, k_] := (n/k)*Binomial[n - k - 1, k - 1];
Table[Table[g[n, k + 1], {k, 0, Floor[n/2] - 1}], {n, 12}];
Flatten[%]
PROG
(PARI) a(n, k)=n*binomial(n-k-1, k-1)/k; \\ Charles R Greathouse IV, Jul 10 2011
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
Roger L. Bagula, Feb 20 2009
EXTENSIONS
Offset 2, keyword:tabf, more terms by the Assoc. Eds. of the OEIS, Nov 01 2010
STATUS
proposed