login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A203998 Symmetric matrix based on f(i,j)=max{i(j+1)-1,j(i+1)-1}, by antidiagonals. 3
1, 3, 3, 5, 5, 5, 7, 8, 8, 7, 9, 11, 11, 11, 9, 11, 14, 15, 15, 14, 11, 13, 17, 19, 19, 19, 17, 13, 15, 20, 23, 24, 24, 23, 20, 15, 17, 23, 27, 29, 29, 29, 27, 23, 17, 19, 26, 31, 34, 35, 35, 34, 31, 26, 19, 21, 29, 35, 39, 41, 41, 41, 39, 35, 29, 21, 23, 32, 39, 44 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A203998 represents the matrix M given by f(i,j)=max{i(j+1)-1,j(i+1)-1}for i>=1 and j>=1. See A203999 for characteristic polynomials of principal submatrices of M, with interlacing zeros.
LINKS
EXAMPLE
Northwest corner:
1...3....5....7....9
3...5....8....11...14
5...8....11...15...19
7...11...15...19...24
MATHEMATICA
f[i_, j_] := Max[i (j + 1) - 1, j (i + 1) - 1];
m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
TableForm[m[6]] (* 6x6 principal submatrix *)
Flatten[Table[f[i, n + 1 - i],
{n, 1, 12}, {i, 1, n}]] (* A203998 *)
p[n_] := CharacteristicPolynomial[m[n], x];
c[n_] := CoefficientList[p[n], x]
TableForm[Flatten[Table[p[n], {n, 1, 10}]]]
Table[c[n], {n, 1, 12}]
Flatten[%] (* A203999 *)
TableForm[Table[c[n], {n, 1, 10}]]
CROSSREFS
Sequence in context: A196172 A123313 A131507 * A257371 A075260 A054847
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Jan 09 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)