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.

A365646 a(n) is the permanent of the n X n matrix M(n) whose generic M[i, j] = j*(10^i - 1)/9 with 1 <= i, j <= n.

This page as a plain text file.
%I A365646 #13 Sep 17 2023 10:01:45
%S A365646 1,1,44,43956,781361856,217042789550400,868170290030441798400,
%T A365646 47267044397174696636039097600,33612120124091913005718848881499750400,
%U A365646 302509080814318135934642422882028113666502246400,33612120087118580872578956587618207930922159448149975040000
%N A365646 a(n) is the permanent of the n X n matrix M(n) whose generic M[i, j] = j*(10^i - 1)/9 with 1 <= i, j <= n.
%C A365646 For n > 1, the matrix M(n) is singular.
%e A365646 a(3) = 43956:
%e A365646   [  1,   2,   3]
%e A365646   [ 11,  22,  33]
%e A365646   [111, 222, 333]
%t A365646 M[i_,j_]:=j(10^i-1)/9; Join[{1},Table[Permanent[Table[M[i,j],{i,n},{j,n}]],{n,10}]]
%o A365646 (PARI) a(n) = matpermanent(matrix(n,n,i,j,j*(10^i - 1)/9)); \\ _Michel Marcus_, Sep 17 2023
%Y A365646 Cf. A365644.
%K A365646 nonn
%O A365646 0,3
%A A365646 _Stefano Spezia_, Sep 14 2023