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!)
A204561 Permanent of the n-th principal submatrix of A204560. 3
1, 3, 26, 274, 4409, 100776, 3348056, 134046480, 6730452660, 416113787472, 32085045507600, 2844782901384192, 294773230519886592, 35411618960849142144, 4970308923985374563328, 778808458472330553255936 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
f[i_, j_] :=
Floor[(2 i + 2 j + 4)/4] - Floor[(i + j + 2)/4];
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, 14}, {i, 1, n}]] (* A204560 *)
Permanent[m_] :=
With[{a = Array[x, Length[m]]},
Coefficient[Times @@ (m.a), Times @@ a]];
Table[Permanent[m[n]], {n, 1, 15}] (* A204561 *)
CROSSREFS
Sequence in context: A300398 A048861 A053972 * A126738 A283298 A259610
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 16 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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)