A129312 A minimal 2 X 2 subdeterminant array.
1, 2, 2, 3, 5, 3, 4, 8, 8, 4, 5, 11, 13, 11, 5, 6, 14, 18, 18, 14, 6, 7, 17, 23, 25, 23, 17, 7, 8, 20, 28, 32, 32, 28, 20, 8, 9, 23, 33, 39, 41, 39, 33, 23, 9, 10, 26, 38, 46, 50, 50, 46, 38, 26, 10, 11, 29, 43, 53, 59, 61, 59, 53, 43, 29, 11, 12, 32, 48, 60, 68, 72, 72, 68, 60
Offset: 1
Examples
Northwest corner: 1 2 3 4 5 6 2 5 8 11 14 17 3 8 13 18 23 28 4 11 18 25 32 39 T(2,2)=5 because 5 is the least positive integer x for which the determinant of the 2 X 2 matrix below is positive: 1 2 2 x
Crossrefs
Programs
-
Mathematica
(* Array version: *) Grid[Table[SeriesCoefficient[Series[(n + (n - 1)*x)/(1 - x)^2, {x, 0, 12}], k], {n, 12}, {k, 0, 12}]] (* L. Edson Jeffery, Aug 23 2014 *) (* Triangle version: *) Grid[Table[SeriesCoefficient[Series[(n - k + (n - k - 1)*x)/(1 - x)^2, {x, 0, 12}], k], {n, 12}, {k, 0, n - 1}]] (* L. Edson Jeffery, Aug 23 2014 *)
Formula
T(n,k)=(2n-1)*k-n+1.
Extensions
Connection to A244418 and interpretation as figurate numbers from Allan C. Wechsler, Nov 18 2018
Comments