A101800 a(n)= abs(det[A000166(i+j+1)]), i,j=0...n, is the absolute value of the Hankel determinant of order n+1 of the derangements numbers, cf. A000166.
0, 1, 16, 2160, 4644864, 220962816000, 126311423016960000, 97655159393202733056000000, 2873961139404949958783139840000000000, 5118723340142578530942677236206891171840000000000
Offset: 0
Keywords
Programs
-
Mathematica
a[n_] := Table[Subfactorial[i+j+1], {i, 0, n}, {j, 0, n}] // Det // Abs; Table[a[n], {n, 0, 9}] (* Jean-François Alcover, Aug 18 2024 *)
Comments