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!)
A351154 a(n) is the permanent of the n X n matrix M(n) that is defined as M[i,j,n] = A351153(n, min(i, j)) + abs(i - j). 1
1, 1, 7, 169, 10388, 1324344, 305668180, 116145817656, 67770421715800, 57594670663866124, 68393751368082128320, 109765035421144948709232, 231657098706747226470685920, 628412716450312334529486247152, 2149132484027947970192241804640128, 9113755489596517688997731211571700256 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Conjectures: (Start)
det(M(0)) = det(M(1)) = 1 and det(M(n)) = -(n - 2)! for n > 1.
abs(det(M(n))) = abs(A159333(n-2)). (End)
LINKS
EXAMPLE
a(3) = 169:
1 2 3
2 4 5
3 5 6
a(4) = 10388:
1 2 3 4
2 5 6 7
3 6 8 9
4 7 9 10
MATHEMATICA
A351153[n_, k_]:=n(k-1)-k(k-3)/2; M[i_, j_, n_]:=A351153[n, Min[i, j]]+Abs[i-j]; a[n_]:=Permanent[Table[M[i, j, n], {i, n}, {j, n}]]; Join[{1}, Array[a, 15]]
PROG
(PARI) t(n, k) = n*(k-1) - k*(k-3)/2; \\ A351153
a(n) = matpermanent(matrix(n, n, i, j, t(n, min(i, j)) + abs(i - j))); \\ Michel Marcus, Feb 03 2022
CROSSREFS
Sequence in context: A012067 A012145 A368839 * A005019 A172027 A113562
KEYWORD
nonn
AUTHOR
Stefano Spezia, Feb 02 2022
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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)