OFFSET
1,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..55
FORMULA
a(n) = 2^(n^2) - 4*2^((n-1)*n) + 4*2^((n-1)^2) + 2*2^((n-2)*n) - 4*2^((n-2)*(n-1)) + 2^((n-2)^2).
EXAMPLE
a(2)=7: 2 rotations of the strictly disconnected domino consisting of two squares connected at a vertex, 4 rotations of the L tromino, and the square tetromino.
MATHEMATICA
Table[2^(n^2) - 4*2^((n - 1)*n) + 4*2^((n - 1)^2) + 2*2^((n - 2)*n) -
4*2^((n - 2)*(n - 1)) + 2^((n - 2)^2), {n, 1, 25}] (* G. C. Greubel, Dec 23 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
David Bevan, Jul 28 2009
STATUS
approved