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!)
A204233 Permanent of the n-th principal submatrix of A204016. 2

%I #7 Jul 12 2012 00:39:59

%S 0,1,4,49,792,18953,610796,25648641,1359184384,88722005809,

%T 6994262098260,655126226755025,71915748374032232,9144536677714434105,

%U 1333394182537641307324,221002933797466121742433

%N Permanent of the n-th principal submatrix of A204016.

%t f[i_, j_] := Max[Mod[i, j], Mod[j, i]];

%t m[n_] := Table[f[i, j],

%t {i, 1, n}, {j, 1, n}] (* A204016 *)

%t Permanent[m_] :=

%t With[{a = Array[x, Length[m]]},

%t Coefficient[Times @@ (m.a), Times @@ a]];

%t Table[Permanent[m[n]], {n, 1, 16}] (* A204233 *)

%Y Cf. A204016.

%K nonn

%O 1,3

%A _Clark Kimberling_, Jan 13 2012

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 September 8 05:52 EDT 2024. Contains 375751 sequences. (Running on oeis4.)