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!)
A289164 Number of dominating sets in the n X n black bishop graph. 7

%I #8 Nov 05 2017 18:49:58

%S 1,3,25,201,6979,233727,31262125,4103802933,2141080094839,

%T 1107896230202475,2284899650399760961,4697484584102406799521,

%U 38572957675399837886746123,316392839278535985537956881623,10375350180532286630209934837828053

%N Number of dominating sets in the n X n black bishop graph.

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

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

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

%o (PARI)

%o Collect(sig,v,r,x)={forstep(r=r, 1, -1, my(w=sig[r]+1); v=vector(#v, k, sum(j=1, k, binomial(#v-j,k-j)*v[j]*x^(k-j)*(1+x)^(w-#v+j-1))-v[k])); v[#v]}

%o DomSetCount(sig,x)={my(v=[1]); my(total=Collect(sig,v,#sig,x)); forstep(r=#sig, 1, -1, my(w=sig[r]+1); total+=Collect(sig, vector(w,k,if(k<=#v,v[k])), r-1, x); v=vector(w, k, sum(j=1, min(k,#v), binomial(w-j, k-j)*v[j]*x^(k-j)*(1+x)^(j-1)))); total}

%o Bishop(n, white)=vector(n-if(white, n%2, 1-n%2), i, n-i+if(white, 1-i%2, i%2));

%o a(n)=DomSetCount(Bishop(n,0),1); \\ _Andrew Howroyd_, Nov 05 2017

%Y Cf. A286886, A289145, A289170.

%K nonn

%O 1,2

%A _Eric W. Weisstein_, Jun 26 2017

%E Terms a(8) and beyond from _Andrew Howroyd_, Nov 05 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 July 16 16:26 EDT 2024. Contains 374358 sequences. (Running on oeis4.)