The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A289897 Number of matchings in the n-triangular honeycomb rook graph. 3
1, 2, 8, 80, 2080, 158080, 36674560, 28019363840, 73410733260800, 697108323044556800, 24883978699398499532800, 3487539382678098506520985600, 1982680089210029713351206397542400, 4739557099654791829171791869197156352000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The n-triangular honeycomb rook graph is the disjoint union of the complete graphs K_k for k in {1..n}. In terms of a triangular chessboard it is the graph for a chesspiece that is constrained to move on a single axis. - Andrew Howroyd, Jul 17 2017
LINKS
Eric Weisstein's World of Mathematics, Independent Edge Set
Eric Weisstein's World of Mathematics, Matching
FORMULA
a(n) = Product_{k=1..n} A000085(k). - Andrew Howroyd, Jul 17 2017
log(a(n)) ~ n^2*log(n)/4 - 3*n^2/8 + 2*n^(3/2)/3. - Vaclav Kotesovec, Aug 29 2023
MATHEMATICA
FoldList[Times, Table[HypergeometricPFQ[{-k/2, (1 - k)/2}, {}, 2], {k, 20}]] (* Eric W. Weisstein, Jul 19 2017 *)
Table[(-1/2)^(Binomial[n + 1, 2]/2) Product[HermiteH[k, -I/Sqrt[2]], {k, n}], {n, 20}] (* Eric W. Weisstein, Jul 19 2017 *)
Table[Product[HypergeometricPFQ[{-k/2, (1 - k)/2}, {}, 2], {k, n}], {n, 20}] (* Eric W. Weisstein, Jul 19 2017 *)
PROG
(PARI)
a(n) = prod(k=1, n, k! * polcoeff( exp( x + x^2 / 2 + x * O(x^k)), k)); \\ Andrew Howroyd, Jul 17 2017
(Python)
from math import prod, factorial
def A289897(n): return prod(sum(factorial(k)//(factorial(k-(m<<1))*factorial(m)*(1<<m)) for m in range((k>>1)+1)) for k in range(1, n+1)) # Chai Wah Wu, Aug 31 2023
CROSSREFS
Cf. A289900.
Sequence in context: A308088 A130530 A134529 * A134054 A323716 A360806
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jul 14 2017
EXTENSIONS
Terms a(11) and beyond from Andrew Howroyd, Jul 17 2017
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 May 14 21:33 EDT 2024. Contains 372533 sequences. (Running on oeis4.)