OFFSET
0,2
COMMENTS
The number of inequivalent n x n black and white checkerboards where two boards are indistinguishable if and only if they are identical after being reflected about the main diagonal.
Cycle index = (s_1^(n^2) + s_1^n*s_2^((n^2-n)/2))/2.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..57
Peter Kagey and William Keehn, Counting tilings of the n X m grid, cylinder, and torus, arXiv:2311.13072 [math.CO], 2023. See p. 3.
MATHEMATICA
Table[(2^(n^2)+2^((n^2+n)/2))/2, {n, 0, 10}]
PROG
(PARI) a(n)=2^(n^2-1) + 2^((n^2+n)/2-1) \\ Charles R Greathouse IV, Dec 08 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Geoffrey Critzer, Nov 19 2011
STATUS
approved