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!)
A204241 Permanent of the n-th principal submatrix of A204158. 2
1, 18, 457, 23672, 1894385, 222366990, 35787014405, 7577453436556, 2041650829418725, 682219727134076250, 276875111860035807025, 134154122874807259146080, 76495123111877275062902585, 50706144718387731766299555750 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
f[i_, j_] := Max[3 i - 2 j, 3 j - 2 i];
m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
TableForm[m[8]] (* 8x8 principal submatrix *)
Flatten[Table[f[i, n + 1 - i],
{n, 1, 12}, {i, 1, n}]] (* A204158 *)
Table[Det[m[n]], {n, 1, 22}] (* A204240 *)
Permanent[m_] :=
With[{a = Array[x, Length[m]]},
Coefficient[Times @@ (m.a), Times @@ a]];
Table[Permanent[m[n]], {n, 1, 14}] (* A204241 *)
CROSSREFS
Sequence in context: A289941 A254211 A086501 * A053115 A084273 A230587
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 13 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 July 23 21:46 EDT 2024. Contains 374575 sequences. (Running on oeis4.)