cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A374283 a(n) is the maximal permanent of an n X n symmetric Toeplitz matrix having 0 on the main diagonal and all the integers 1, 2, ..., n-1 off-diagonal.

This page as a plain text file.
%I A374283 #14 Jul 07 2024 05:49:13
%S A374283 1,0,1,8,256,9978,600052,49036950,5286564352,725724599636
%N A374283 a(n) is the maximal permanent of an n X n symmetric Toeplitz matrix having 0 on the main diagonal and all the integers 1, 2, ..., n-1 off-diagonal.
%H A374283 Wikipedia, <a href="https://en.wikipedia.org/wiki/Toeplitz_matrix">Toeplitz Matrix</a>.
%e A374283 a(5) = 9978:
%e A374283   [0, 4, 3, 2, 1]
%e A374283   [4, 0, 4, 3, 2]
%e A374283   [3, 4, 0, 4, 3]
%e A374283   [2, 3, 4, 0, 4]
%e A374283   [1, 2, 3, 4, 0]
%t A374283 a[0]=1; a[n_]:=Max[Table[Permanent[ToeplitzMatrix[Join[{0}, Part[Permutations[Range[n - 1]], i]]]], {i, (n-1)!}]]; Array[a, 11, 0]
%Y A374283 Cf. A085807 (minimal), A358327.
%Y A374283 Cf. A374279, A374280, A374281, A374282.
%K A374283 nonn,hard,more
%O A374283 0,4
%A A374283 _Stefano Spezia_, Jul 02 2024