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!)
A204251 Permanent of the n-th principal submatrix of A204250. 2
1, 15, 696, 70380, 13028148, 3964560012, 1842113636352, 1238025608824896, 1154488823507833920, 1445382306218202517440, 2365159362652507207703040, 4947087474421921107685036800, 12980259416603230936506795674880 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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. A204250.
Sequence in context: A001520 A062079 A062032 * A281764 A209740 A209461
KEYWORD
nonn
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)