OFFSET
1,3
COMMENTS
The vertex arboricity is the minimum number of sets into which the vertices of a graph G can be partitioned so that each set induces a forest.
The extremal graphs (for n == 1 (mod 4)) are characterized in Bickle (2023).
REFERENCES
D. R. Lick and A. T. White, Point-partition numbers of complementary graphs, Math. Japonicae 19 (1974), 233-237.
LINKS
Allan Bickle, Extremal Decompositions for Nordhaus-Gaddum Theorems, Discrete Math, 346 7 (2023), 113392.
J. Mitchem, On the point-arboricity of a graph and its complement, Canad. J. Math. 23 (1971), 287-292.
Index entries for linear recurrences with constant coefficients, signature (2,-1,0,0,0,0,0,1,-2,1).
FORMULA
a(n) = floor(((n+3)/2)^2 / 4).
G.f.: (1 - x + x^2)/((1 - x)^3*(1 + x)*(1 + x^2)*(1 + x^4)). - Stefano Spezia, Apr 22 2023
EXAMPLE
A 5-cycle has vertex arboricity 2, and its complement is also a 5-cycle, so a(5) is at least 2*2 = 4.
MATHEMATICA
LinearRecurrence[{2, -1, 0, 0, 0, 0, 0, 1, -2, 1}, {1, 1, 2, 3, 4, 5, 6, 7, 9, 10}, 60] (* Harvey P. Dale, Jul 30 2023 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Allan Bickle, Apr 20 2023
STATUS
approved