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.

A323295 Number of ways to fill a matrix with the first n positive integers.

This page as a plain text file.
%I A323295 #18 Sep 14 2019 16:48:46
%S A323295 1,1,4,12,72,240,2880,10080,161280,1088640,14515200,79833600,
%T A323295 2874009600,12454041600,348713164800,5230697472000,104613949440000,
%U A323295 711374856192000,38414242234368000,243290200817664000,14597412049059840000,204363768686837760000
%N A323295 Number of ways to fill a matrix with the first n positive integers.
%F A323295 a(n) = A000005(n) * n! for n > 0, a(0) = 1.
%F A323295 E.g.f.: 1 + Sum_{k>=1} x^k/(1 - x^k). - _Ilya Gutkovskiy_, Sep 13 2019
%e A323295 The a(4) = 72 matrices consist of:
%e A323295   24 row/column permutations of [1 2 3 4]
%e A323295 +
%e A323295   4 row/column permutations of [1 2]
%e A323295                                [3 4]
%e A323295 +
%e A323295   4 row/column permutations of [1 2]
%e A323295                                [4 3]
%e A323295 +
%e A323295   4 row/column permutations of [1 3]
%e A323295                                [2 4]
%e A323295 +
%e A323295   4 row/column permutations of [1 3]
%e A323295                                [4 2]
%e A323295 +
%e A323295   4 row/column permutations of [1 4]
%e A323295                                [2 3]
%e A323295 +
%e A323295   4 row/column permutations of [1 4]
%e A323295                                [3 2]
%e A323295 +
%e A323295   24 row/column permutations of [1]
%e A323295                                 [2]
%e A323295                                 [3]
%e A323295                                 [4]
%t A323295 Join[{1}, Table[DivisorSigma[0, n]*n!, {n, 30}]]
%o A323295 (PARI) a(n) = if (n==0, 1, numdiv(n)*n!); \\ _Michel Marcus_, Jan 15 2019
%Y A323295 Cf. A000005, A000142, A038041, A053529, A057625, A061095, A120733, A121860.
%Y A323295 Cf. A323300, A323301, A323307, A323351.
%K A323295 nonn
%O A323295 0,3
%A A323295 _Gus Wiseman_, Jan 12 2019