The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A287065 Number of dominating sets on the n X n rook graph. 7
1, 11, 421, 59747, 32260381, 67680006971, 559876911043381, 18412604442711949187, 2416403019417984915336061, 1267413006543912045144741284411, 2658304092145691708492995820522716981, 22300364428188338185156192161829091442585827 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Number of {0,1} n X n matrices with no zero rows or no zero columns. - Geoffrey Critzer, Jan 15 2024
LINKS
Eric Weisstein's World of Mathematics, Dominating Set
Eric Weisstein's World of Mathematics, Rook Graph
FORMULA
a(n) = (2^n-1)^n + Sum_{i=1..n-1} binomial(n,i) * A183109(n,i). - Andrew Howroyd, May 22 2017
MATHEMATICA
Table[(2^n - 1)^n + Sum[Binomial[n, i] Sum[(-1)^j (-1 + 2^(n - j))^i Binomial[n, j], {j, 0, n}], {i, n - 1}], {n, 20}] (* Eric W. Weisstein, May 27 2017 *)
PROG
(PARI)
b(m, n)=sum(j=0, m, (-1)^j*binomial(m, j)*(2^(m - j) - 1)^n);
a(n)=(2^n-1)^n + sum(i=1, n-1, b(n, i)*binomial(n, i)); \\ Andrew Howroyd, May 22 2017
CROSSREFS
Main diagonal of A287274.
Sequence in context: A090558 A068135 A197770 * A337527 A356210 A140840
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 19 2017
EXTENSIONS
a(6)-a(12) from Andrew Howroyd, May 22 2017
STATUS
approved

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 June 7 18:53 EDT 2024. Contains 373206 sequences. (Running on oeis4.)