login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A289196 Number of connected dominating sets in the n X n rook graph. 3

%I #14 Oct 02 2017 07:58:40

%S 1,9,325,51465,30331861,66273667449,556170787050565,

%T 18374555799096912585,2414861959450912233421141,

%U 1267166974391002542218440851129,2658149210218078451926703769353958085,22299979556058598891936157095746389850916425

%N Number of connected dominating sets in the n X n rook graph.

%C A set of vertices in the n X n rook graph can be represented as a n X n binary matrix. The vertex set will be dominating if either every row contains a 1 or every column contains a 1. - _Andrew Howroyd_, Jul 18 2017

%H Andrew Howroyd, <a href="/A289196/b289196.txt">Table of n, a(n) for n = 1..50</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/ConnectedDominatingSet.html">Connected Dominating Set</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RookGraph.html">Rook Graph</a>

%F a(n) = A262307(n,n) + 2*Sum_{k=1..n-1} binomial(n,k) * A262307(n,k). - _Andrew Howroyd_, Jul 18 2017

%t (* b = A183109, T = A262307 *) b[m_, n_] := Sum[(-1)^j*Binomial[m, j]*(2^(m - j) - 1)^n, {j, 0, m}]; T[_, 1] = T[1, _] = 1; T[m_, n_] := T[m, n] = b[m, n] - Sum[T[i, j]*b[m-i, n-j]*Binomial[m-1, i-1]*Binomial[n, j], {i, 1, m-1}, {j, 1, n-1}]; a[n_] := T[n, n] + 2*Sum[ Binomial[n, k]*T[n, k], {k, 1, n-1}]; Array[a, 12] (* _Jean-François Alcover_, Oct 02 2017, after _Andrew Howroyd_ *)

%o (PARI)

%o G(N)={S=matrix(N, N); T=matrix(N, N); U=matrix(N, N);

%o \\ S is A183109, T is A262307, U is m X n variant of this sequence.

%o for(m=1, N, for(n=1, N,

%o S[m, n]=sum(j=0, m, (-1)^j*binomial(m, j)*(2^(m - j) - 1)^n);

%o T[m, n]=S[m, n]-sum(i=1, m-1, sum(j=1, n-1, T[i, j]*S[m-i, n-j]*binomial(m-1, i-1)*binomial(n, j)));

%o U[m, n]=sum(i=1, m, binomial(m, i)*T[i, n])+sum(j=1, n, binomial(n,j)*T[m, j])-T[m,n] )); U}

%o a(n)=G(n)[n, n]; \\ _Andrew Howroyd_, Jul 18 2017

%Y Cf. A183109, A262307, A286189, A287065.

%K nonn

%O 1,2

%A _Eric W. Weisstein_, Jun 28 2017

%E Terms a(6) and beyond from _Andrew Howroyd_, Jul 18 2017

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 20:35 EDT 2024. Contains 376002 sequences. (Running on oeis4.)