A333348 Matching number of the tree of n vertices with the largest number of maximum matchings.
0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 8, 8, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 12, 12, 12, 12, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 24, 24, 24
Offset: 0
Keywords
Links
- Paolo Xausa, Table of n, a(n) for n = 0..10000
- Clemens Heuberger and Stephan Wagner, The Number of Maximum Matchings in a Tree, Discrete Mathematics, volume 311, issue 21, November 2011, pages 2512-2542; arXiv preprint, arXiv:1011.6554 [math.CO], 2010.
- Clemens Heuberger and Stephan Wagner, Number of Maximum Matchings In a Tree - Sage Worksheet, constructing the trees.
- Kevin Ryde, vpar examples/most-maximum-matchings.gp creating, counting, and recurrences, in PARI/GP.
- Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,0,1,-1).
Crossrefs
Cf. A333347 (number of maximum matchings).
Programs
-
Mathematica
A333348[n_] := Switch[n, 2, 1, 6, 1, 13, 3, 20, 5, _, Floor[(2*n + 2)/7]]; Array[A333348, 100, 0] (* Paolo Xausa, Jun 18 2024 *)
Formula
a(2)=a(6)=1, a(13)=3, a(20)=5, and otherwise a(n) = floor((2n+2)/7).
Comments