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!)
A204250 Symmetric matrix read by antidiagonals given by T(i,j)=i*j+i+j-2. 2
1, 3, 3, 5, 6, 5, 7, 9, 9, 7, 9, 12, 13, 12, 9, 11, 15, 17, 17, 15, 11, 13, 18, 21, 22, 21, 18, 13, 15, 21, 25, 27, 27, 25, 21, 15, 17, 24, 29, 32, 33, 32, 29, 24, 17, 19, 27, 33, 37, 39, 39, 37, 33, 27, 19, 21, 30, 37, 42, 45, 46, 45, 42, 37, 30, 21, 23, 33, 41, 47 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
David Singmaster, David Fielker, N. J. A. Sloane, Correspondence, August 1979
EXAMPLE
Northwest corner:
1...3...5....7....9
3...6...9....12...15
5...9...13...17...21
7...12..17...22...27
MATHEMATICA
f[i_, j_] := i*j + i + j - 2;
m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
TableForm[m[5]] (* 5x5 principal submatrix *)
Flatten[Table[f[i, n + 1 - i],
{n, 1, 12}, {i, 1, n}]] (* A204250 *)
Permanent[m_] :=
With[{a = Array[x, Length[m]]},
Coefficient[Times @@ (m.a), Times @@ a]];
Table[Permanent[m[n]], {n, 1, 14}] (* A204251 *)
CROSSREFS
Cf. A204251.
Sequence in context: A140351 A128444 A317745 * A131948 A134636 A088564
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Jan 14 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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)