login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A378790
Lower matching number of the n X n king graph.
0
0, 2, 3, 6, 8, 14, 17, 24, 28, 38, 43, 54, 60, 74, 81, 96, 104, 122, 131, 150, 160, 182, 193, 216, 228, 254, 267, 294, 308, 338, 353, 384, 400, 434, 451, 486, 504, 542, 561, 600, 620, 662, 683, 726, 748, 794, 817, 864, 888, 938, 963, 1014, 1040, 1094, 1121
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, King Graph.
Eric Weisstein's World of Mathematics, Lower Matching Number.
FORMULA
G.f.: -(x^2*(2+x+x^2+x^3+x^4))/((-1+x)^3*(1+x)^2*(1+x^2)).
a(n) = 1*a(n-1)+1*a(n-2)-1*a(n-3)+1*a(n-4)-1*a(n-5)-1*a(n-6)+1*a(n-7).
MATHEMATICA
Table[(3 + (-1)^n + 2 n (-1 + (-1)^n + 3 n) - 4 Cos[n Pi/2] - 4 Sin[n Pi/2])/16, {n, 20}]
LinearRecurrence[{1, 1, -1, 1, -1, -1, 1}, {0, 2, 3, 6, 8, 14, 17}, 20]
CoefficientList[Series[-((x (2 + x + x^2 + x^3 + x^4))/((-1 + x)^3 (1 + x)^2 (1 + x^2))), {x, 0, 20}], x]
CROSSREFS
Sequence in context: A376597 A308909 A369356 * A308958 A326450 A326530
KEYWORD
nonn,new
AUTHOR
Eric W. Weisstein, Dec 07 2024
STATUS
approved