login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A071093 Number of matchings in triangle graph with n nodes per side as n runs through numbers congruent to 0 or 3 mod 4. 2
1, 2, 6, 2196, 37004, 2317631400, 216893681800, 2326335506123418128, 1208982377794384163088, 2220650888749669503773432361504, 6408743336016148761893699822360672 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

REFERENCES

J. Propp, Enumeration of matchings: problems and progress, pp. 255-291 in L. J. Billera et al., eds, New Perspectives in Algebraic Combinatorics, Cambridge, 1999 (see Problem 17).

LINKS

J. Propp, Twenty open problems in enumeration of matchings.

J. Propp, Updated article

J. Propp, Enumeration of matchings: problems and progress, in L. J. Billera et al. (eds.), New Perspectives in Algebraic Combinatorics

MAPLE

with(linalg): b:= proc(n) option remember; local l, ll, i, j, h0, h1, M; if n=0 then RETURN (1) fi; if n<0 or member(irem(n, 4), [1, 2]) then RETURN (0) fi; l:= []; for j from 1 to n-1 do h0:= j*(j-1)/2+1; h1:= j*(j+1)/2+1; for i from 1 to j do l:= [l[], [h1, h1+1]]; if irem (i, 2)=1 then l:= [l[], [h1, h0]]; h1:= h1+1; l:=[l[], [h1, h0]]; h0:=h0+1 else l:= [l[], [h0, h1]]; h1:= h1+1; l:=[l[], [h0, h1]]; h0:=h0+1 fi od od; M:= Matrix ((n+1)*n/2); for ll in l do M[ll[1], ll[2]]:= 1; M[ll[2], ll[1]]:= -1 od: sqrt (det (M)); end: a:= n-> b(2*n +irem (n, 2)); seq (a(n), n=0..10); [From Alois P. Heinz (heinz(AT)hs-heilbronn.de), May 08 2010]

CROSSREFS

Cf. A039907.

Sequence in context: A046857 A129454 A140258 * A114045 A116899 A162146

Adjacent sequences:  A071090 A071091 A071092 * A071094 A071095 A071096

KEYWORD

nonn

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com).

EXTENSIONS

a(9) - a(10) from Alois P. Heinz (heinz(AT)hs-heilbronn.de), May 08 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 19:13 EST 2012. Contains 206085 sequences.