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!)
A335586 Number of domino tilings of a 2n X 2n toroidal grid. 5
1, 8, 272, 90176, 311853312, 11203604497408, 4161957566985310208, 15954943354032349049274368, 630665326543010382995142219988992, 256955886436135671144699761794930161483776 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
For n > 1, number of perfect matchings of the graph C_2n X C_2n.
LINKS
S. N. Perepechko, The number of perfect matchings on C_m X C_n graphs, (in Russian), Information Processes, 2016, V. 16, No. 4, pp. 333-361.
Eric Weisstein's World of Mathematics, Perfect Matching
Eric Weisstein's World of Mathematics, Torus Grid Graph
FORMULA
a(n) = 4 * Product_{j=1..n-1} Product_{k=1..n} (4*sin(j*Pi/n)^2 + 4*sin((2*k-1)*Pi/(2*n))^2) + 1/2 * Product_{1<=j,k<=n} (4*sin((2*j-1)*Pi/(2*n))^2 + 4*sin((2*k-1)*Pi/(2*n))^2) = 4 * A341478(n)^2 + A341479(n)/2 for n > 0. - Seiichi Manyama, Feb 13 2021
a(n) ~ (1 + sqrt(2)) * exp(4*G*n^2/Pi), where G is Catalan's constant A006752. - Vaclav Kotesovec, Feb 14 2021
EXAMPLE
For n = 1, there are a(1) = 8 tilings (see the Links section for a diagram).
PROG
(PARI) default(realprecision, 120);
b(n) = round(prod(j=1, n-1, prod(k=1, n, 4*sin(j*Pi/n)^2+4*sin((2*k-1)*Pi/(2*n))^2)));
c(n) = round(prod(j=1, n, prod(k=1, n, 4*sin((2*j-1)*Pi/(2*n))^2+4*sin((2*k-1)*Pi/(2*n))^2)));
a(n) = if(n==0, 1, 4*b(n)+c(n)/2); \\ Seiichi Manyama, Feb 13 2021
CROSSREFS
Number of perfect matchings of the graph C_2m X C_n: A162484 (m=1), A220864 (m=2), A232804 (m=3), A253678 (m=4), A281679 (m=5), A309018 (m=6).
Sequence in context: A129424 A274559 A338636 * A159496 A045479 A179570
KEYWORD
nonn
AUTHOR
Drake Thomas, Jan 26 2021
EXTENSIONS
More terms from Seiichi Manyama, Feb 13 2021
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 July 16 23:11 EDT 2024. Contains 374360 sequences. (Running on oeis4.)