OFFSET
1,3
COMMENTS
The vertex sets which are not totally dominating are just those that are contained in the union of a single row and column. - Andrew Howroyd, Apr 20 2018
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..50
Eric Weisstein's World of Mathematics, Rook Complement Graph
Eric Weisstein's World of Mathematics, Total Dominating Set
FORMULA
a(n) = 2^(n^2) - 2*n*(2^n - 1) - 2*n^2*(2^(n-1)-1)^2 + n^2*(n-1)^2/2 + n^2 - 1. - Andrew Howroyd, Apr 20 2018
PROG
(PARI) a(n) = {2^(n^2) - 2*n*(2^n - 1) - 2*n^2*(2^(n-1)-1)^2 + n^2*(n-1)^2/2 + n^2 - 1} \\ Andrew Howroyd, Apr 20 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Apr 19 2018
EXTENSIONS
Terms a(6) and beyond from Andrew Howroyd, Apr 20 2018
STATUS
approved