OFFSET
0,2
COMMENTS
A minimal H-Tree covers the fewest possible points on a square lattice. This results in a smaller bounding box, 2^(n-2)-1 by 2^(n-3)-1, than a regular H-Tree, 2^(n-2)-1 by 2^(n-2)-3, at odd n > 1.
LINKS
David Cleaver, Table of n, a(n) for n = 0..1000
David Cleaver, Illustration of a(0)-a(6)
Neil Robertson and P. D. Seymour, Graph Minors. I. Excluding a Forest, Journal of Combinatorial Theory, Series B, Volume 35, Issue 1, August 1983, Pages 39-61 (see H6 in Fig. 3 on p. 52).
Wikipedia, H tree.
Index entries for linear recurrences with constant coefficients, signature (3,0,-6,4).
FORMULA
a(2n) = A169726(n).
G.f.: -(2*x^3-2*x^2+1)/((x-1)*(2*x-1)*(2*x^2-1)). - Joerg Arndt, Apr 12 2026
a(n) = 1 + 3*2^n - 2^((n-3)/2)*(4 + 3*sqrt(2) + (-1)^n*(3*sqrt(2) - 4)). - Stefano Spezia, Apr 15 2026
MATHEMATICA
a[n_]:=1+3*2^n-2^((n-3)/2)*(4+3Sqrt[2]+(-1)^n*(3*Sqrt[2]-4)); Array[a, 36, 0] (* Stefano Spezia, Apr 15 2026 *)
PROG
(PARI) a(n)={my(T=1); for(i=1, n, T=T+2^floor((n-i)/2)*2^i); T};
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
David Cleaver, Apr 11 2026
STATUS
approved