OFFSET
1,2
COMMENTS
The maximal number of distinct entries of an n X n bisymmetric matrix B_n is A002620(n+1) = ((n+1)/2)^2 if n is odd and = n*(n+2)/4 if n is even. See a comment and example under A002620.
Here the first A002620(n+1) positive numbers are used consecutively, that is B_n[i, j] = (i-1)*n - (i-1)^2 + j for j=i..N-(i-1) and i = 1..ceiling(n/2).
Conjecture: a(2*n-1) = (-1)^(n-1)*A034976(n), n >= 1.
For a(2*n)/3 see A259057(n), n >= 1 (assuming that a(2*n) is always divisible by 3).
LINKS
Wikipedia, Bisymmetric Matrix .
FORMULA
Determinant of the above defined bisymmetric matrix B_n, n >= 1.
EXAMPLE
n = 1, B_1 [1], a(1) = det(B_1) = 1.
n = 2, B_2 = [[1,2],[2,1]], a(2) = det(B_2) = -3.
n = 3: B_3 = [[1,2,3],[2,4,2],[3,2,1]], a(3) = det(B_3) = -16
n = 4: B_4 = [[1,2,3,4],[2,5,6,3],[3,6,5,2],[4,3,2,1]], a(4) = det(B_4) = 60.
CROSSREFS
KEYWORD
sign,easy
AUTHOR
Wolfdieter Lang, Jul 07 2015
STATUS
approved