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!)
A162676 Number of different fixed (possibly) disconnected n-ominoes bounded (not necessarily tightly) by an n*n square. 7
1, 4, 48, 956, 26490, 937342, 40291608, 2036155284, 118202408622, 7747410899954, 565695467415936, 45525704815717568, 4002930269944724664, 381750656962687053108, 39244733577786624617904, 4325973539461955182836900, 508971415418900757219557142 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = binomial(n^2,n)-2*binomial((n-1)*n,n)+binomial((n-1)^2,n).
EXAMPLE
a(2)=4: the two rotations of the (connected) domino and the two rotations of the disconnected domino consisting of two squares connected at a vertex.
MATHEMATICA
Table[Binomial[n^2, n]-2*Binomial[(n-1)n, n]+Binomial[(n-1)^2, n], {n, 20}] (* Harvey P. Dale, Oct 01 2013 *)
PROG
(PARI) a(n) = binomial(n^2, n) - 2*binomial((n-1)*n, n) + binomial((n-1)^2, n); \\ Michel Marcus, Aug 30 2013
CROSSREFS
Sequence in context: A322296 A360484 A192260 * A141119 A052714 A144828
KEYWORD
nonn
AUTHOR
David Bevan, Jul 27 2009
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 19 07:26 EDT 2024. Contains 371782 sequences. (Running on oeis4.)