The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A203996 Symmetric matrix based on f(i,j)=min{i(j+1),j(i+1)}, by antidiagonals. 3
2, 3, 3, 4, 6, 4, 5, 8, 8, 5, 6, 10, 12, 10, 6, 7, 12, 15, 15, 12, 7, 8, 14, 18, 20, 18, 14, 8, 9, 16, 21, 24, 24, 21, 16, 9, 10, 18, 24, 28, 30, 28, 24, 18, 10, 11, 20, 27, 32, 35, 35, 32, 27, 20, 11, 12, 22, 30, 36, 40, 42, 40, 36, 30, 22, 12, 13, 24, 33, 40, 45, 48 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A203996 represents the matrix M given by f(i,j)=min{i(j+1),j(i+1)} for i>=1 and j>=1. See A203997 for characteristic polynomials of principal submatrices of M, with interlacing zeros.
LINKS
EXAMPLE
Northwest corner:
2...3....4....5....6....7
3...6....8....10...12...14
4...8....12...15...18...21
5...10...15...20...24...28
MATHEMATICA
f[i_, j_] := Min[i (j + 1), j (i + 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}]] (* A203996 *)
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[%] (* A203997 *)
TableForm[Table[c[n], {n, 1, 10}]]
CROSSREFS
Sequence in context: A213938 A031501 A279417 * A059442 A225273 A014410
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 May 14 23:22 EDT 2024. Contains 372535 sequences. (Running on oeis4.)