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.

A219727 Number A(n,k) of k-partite partitions of {n}^k into k-tuples; square array A(n,k), n>=0, k>=0, read by antidiagonals.

This page as a plain text file.
%I A219727 #31 Dec 05 2022 08:14:30
%S A219727 1,1,1,1,1,1,1,2,2,1,1,5,9,3,1,1,15,66,31,5,1,1,52,712,686,109,7,1,1,
%T A219727 203,10457,27036,6721,339,11,1,1,877,198091,1688360,911838,58616,1043,
%U A219727 15,1,1,4140,4659138,154703688,231575143,26908756,476781,2998,22,1
%N A219727 Number A(n,k) of k-partite partitions of {n}^k into k-tuples; square array A(n,k), n>=0, k>=0, read by antidiagonals.
%C A219727 A(n,k) is the number of factorizations of m^n where m is a product of k distinct primes.  A(2,2) = 9: (2*3)^2 = 36 has 9 factorizations: 36, 3*12, 4*9, 3*3*4, 2*18, 6*6, 2*3*6, 2*2*9, 2*2*3*3.
%C A219727 A(n,k) is the number of (n*k) X k matrices with nonnegative integer entries and column sums n up to permutation of rows. - _Andrew Howroyd_, Dec 10 2018
%H A219727 Andrew Howroyd, <a href="/A219727/b219727.txt">Table of n, a(n) for n = 0..209</a>
%e A219727 A(1,3) = 5: [(1,1,1)], [(1,1,0),(0,0,1)], [(1,0,1),(0,1,0)], [(1,0,0),(0,1,0),(0,0,1)], [(0,1,1),(1,0,0)].
%e A219727 A(2,2) = 9: [(2,2)], [(2,1),(0,1)], [(2,0),(0,2)], [(2,0),(0,1),(0,1)], [(1,2),(1,0)], [(1,1),(1,1)], [(1,1),(1,0),(0,1)], [(1,0),(1,0),(0,2)], [(1,0),(1,0),(0,1),(0,1)].
%e A219727 Square array A(n,k) begins:
%e A219727   1,   1,    1,      1,        1,         1,         1,       1, ...
%e A219727   1,   1,    2,      5,       15,        52,       203,     877, ...
%e A219727   1,   2,    9,     66,      712,     10457,    198091, 4659138, ...
%e A219727   1,   3,   31,    686,    27036,   1688360, 154703688, ...
%e A219727   1,   5,  109,   6721,   911838, 231575143, ...
%e A219727   1,   7,  339,  58616, 26908756, ...
%e A219727   1,  11, 1043, 476781, ...
%e A219727   1,  15, 2998, ...
%o A219727 (PARI)
%o A219727 EulerT(v)={Vec(exp(x*Ser(dirmul(v,vector(#v,n,1/n))))-1, -#v)}
%o A219727 D(p, n, k)={my(v=vector(n)); for(i=1, #p, v[p[i]]++); EulerT(v)[n]^k/prod(i=1, #v, i^v[i]*v[i]!)}
%o A219727 T(n, k)={my(m=n*k, q=Vec(exp(O(x*x^m) + intformal((x^n-1)/(1-x)))/(1-x))); if(n==0, 1, sum(j=0, m, my(s=0); forpart(p=j, s+=D(p,n,k), [1,n]); s*q[#q-j]))} \\ _Andrew Howroyd_, Dec 11 2018
%Y A219727 Columns k=0..3 give: A000012, A000041, A002774, A219678.
%Y A219727 Rows n=0..4 give: A000012, A000110, A020555, A322487, A358781.
%Y A219727 Main diagonal gives A322488.
%Y A219727 Cf. A188392, A219585 (partitions of {n}^k into distinct k-tuples), A256384, A318284, A318951.
%K A219727 nonn,tabl
%O A219727 0,8
%A A219727 _Alois P. Heinz_, Nov 26 2012