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!)
A230880 Number of 2-packed matrices with exactly n nonzero entries. 3

%I #16 Oct 08 2017 08:54:56

%S 1,2,8,80,1120,20544,463744,12422656,384947200,13541822464,

%T 533049493504,23210958688256,1107652218822656,57482801016422400,

%U 3223015475535380480,194157345516262588416,12505948470244176953344,857670052436844788318208,62395270194815987194789888

%N Number of 2-packed matrices with exactly n nonzero entries.

%C A k-packed matrix of size n X n is a matrix with entries in the alphabet A_k = {0,1, ..., k} such that each row and each column contains at least one nonzero entry.

%H Andrew Howroyd, <a href="/A230880/b230880.txt">Table of n, a(n) for n = 0..100</a>

%H H. Cheballah, S. Giraudo, R. Maurice, <a href="http://arxiv.org/abs/1306.6605">Combinatorial Hopf algebra structure on packed square matrices</a>, arXiv preprint arXiv:1306.6605 [math.CO], 2013.

%F Cheballah et al. give an explicit formula.

%F From _Andrew Howroyd_, Sep 20 2017: (Start)

%F a(n) = Sum_{r=1..n} Sum_{i=0..r} Sum_{j=0..r} (-1)^(i+j) * binomial(r,i) * binomial(r,j) * binomial(i*j,n) * 2^n.

%F a(n) = 2^n * A104602(n).

%F (End)

%t b[n_] := Sum[StirlingS1[n, k]*Sum[(m!)^2*StirlingS2[k, m]^2, {m, 0, k}], {k, 0, n}]/n!;

%t a[n_] := 2^n*b[n];

%t Table[a[n], {n, 0, 18}] (* _Jean-François Alcover_, Oct 08 2017, translated from PARI *)

%o (PARI) \\ here b(n) is A104602.

%o b(n) = {sum(m=0, n, sum(k=0, n, stirling(n,k,1) * m!^2 * stirling(k,m,2)^2)) / n!}

%o a(n) = 2^n * b(n); \\ _Andrew Howroyd_, Sep 20 2017

%Y Cf. A048291, A055599, A230878, A230879, A104602.

%K nonn

%O 0,2

%A _N. J. A. Sloane_, Nov 09 2013

%E Terms a(9) and beyond from _Andrew Howroyd_, Sep 20 2017

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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)