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!)
A323501 Number of minimum dominating sets in the n X n white bishop graph. 3
2, 6, 5, 2, 22, 356, 108, 24, 672, 25056, 4680, 720, 38160, 2531520, 342720, 40320, 3467520, 358444800, 38102400, 3628800, 460857600, 68388364800, 5987520000, 479001600, 84304281600, 16979648716800, 1264085222400, 87178291200, 20312541849600 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
Eric Weisstein's World of Mathematics, Minimum Dominating Set
Eric Weisstein's World of Mathematics, White Bishop Graph
FORMULA
From Andrew Howroyd, Sep 09 2019: (Start)
a(n) = (n/2)! * (n + 1)/2 for n mod 4 = 0;
a(n) = ((n-1)/2)! for n mod 4 = 1;
a(n) = (n/2-1)! * (n^2 + n + 2)/4 for n mod 4 = 2;
a(n) = ((n-3)/2)! * (n + 1)*(n^3 + n^2 - 6*n + 6)/16 for n mod 4 = 3.
(End)
PROG
(PARI) \\ See A289170 for DomSetCount, Bishop.
a(n)={Vec(DomSetCount(Bishop(n, 1), x + O(x^((n+3)\2))))[1]} \\ Andrew Howroyd, Sep 08 2019
(PARI) a(n)=(n\4*2)!*if(n%4<2, if(n%2==0, (n + 1)/2, 1), if(n%2==0, (n^2 + n + 2)/4, (n + 1)*(n^3 + n^2 - 6*n + 6)/16)); \\ Andrew Howroyd, Sep 09 2019
CROSSREFS
Cf. A182333 (bishop graph), A323500 (black bishop graph).
Sequence in context: A304585 A336074 A021381 * A157890 A329932 A359858
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jan 16 2019
EXTENSIONS
Offset corrected and terms a(11) and beyond from Andrew Howroyd, Sep 08 2019
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 April 16 00:27 EDT 2024. Contains 371696 sequences. (Running on oeis4.)