The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A357503 a(n) is the hafnian of the 2n X 2n symmetric matrix whose element (i,j) equals abs(i-j). 0
1, 1, 8, 174, 7360, 512720, 53245824, 7713320944, 1486382446592, 367691598791424, 113570289012090880 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Wikipedia, Hafnian
Wikipedia, Symmetric matrix
EXAMPLE
a(2) = M_{1,2}*M_{3,4} + M_{1,3}*M_{2,4} + M_{1,4}*M_{2,3} = 8 is the hafnian of
0, 1, 2, 3;
1, 0, 1, 2;
2, 1, 0, 1;
3, 2, 1, 0.
MATHEMATICA
M[i_, j_, n_]:=Part[Part[Table[Abs[r-c], {r, n}, {c, n}], i], j]; a[n_]:=Sum[Product[M[Part[PermutationList[s, 2n], 2i-1], Part[PermutationList[s, 2n], 2i], 2n], {i, n}], {s, SymmetricGroup[2n]//GroupElements}]/(n!*2^n); Array[a, 6, 0]
PROG
(PARI) tm(n) = matrix(n, n, i, j, abs(i-j));
a(n) = my(m = tm(2*n), s=0); forperm([1..2*n], p, s += prod(j=1, n, m[p[2*j-1], p[2*j]]); ); s/(n!*2^n); \\ Michel Marcus, May 02 2023
CROSSREFS
Cf. A049581, A085750 (determinant of M(n)), A085807 (permanent of M(n)), A094053 (super- and subdiagonal sums of M(n) in reversed order), A144216 (row- and column sums of M(n)), A338456.
Sequence in context: A215124 A138783 A067637 * A024109 A027464 A220966
KEYWORD
nonn,hard,more
AUTHOR
Stefano Spezia, Oct 01 2022
EXTENSIONS
a(6) from Michel Marcus, May 02 2023
a(7)-a(10) from Pontus von Brömssen, Oct 15 2023
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 May 28 21:13 EDT 2024. Contains 372920 sequences. (Running on oeis4.)