OFFSET
0,3
COMMENTS
Kurz proved the polyomino equivalent of this conjecture as A122133 and abstracts: "In this article we prove a conjecture of Bezdek, Brass and Harborth concerning the maximum volume of the convex hull of any facet-to-facet connected system of n unit hypercubes in the d-dimensional Euclidean space. For d=2 we enumerate the extremal polyominoes and determine the set of possible areas of the convex hull for each n."
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Sascha Kurz, Convex hulls of polyominoes, arXiv:math/0702786 [math.CO], Feb 26 2007. See conjecture 2, p. 12.
Eric Weisstein's World of Mathematics, Polyhex.
Index entries for linear recurrences with constant coefficients, signature (2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,1).
FORMULA
a(n) = floor((n^2 + 14*n/3 + 1)/6).
G.f.: x*(1 +x^2)*(1 -x^3 +2*x^4 -x^6 +x^7 +x^11 -x^13 +x^14 +x^15 -x^16) / ((1 -x)^3*(1 +x)*(1 -x +x^2)*(1 +x +x^2)*(1 -x^3 +x^6)*(1 +x^3 +x^6)). - Colin Barker, Oct 13 2016
EXAMPLE
a(10) = 24 because floor((10^2 + 14*10/3 + 1)/6) = floor(24.6111111) = 24.
MATHEMATICA
Table[Floor[(n^2+14n/3+1)/6], {n, 0, 80}] (* Harvey P. Dale, Apr 11 2012 *)
PROG
(PARI) concat(0, Vec(x*(1 +x^2)*(1 -x^3 +2*x^4 -x^6 +x^7 +x^11 -x^13 +x^14 +x^15 -x^16) / ((1 -x)^3*(1 +x)*(1 -x +x^2)*(1 +x +x^2)*(1 -x^3 +x^6)*(1 +x^3 +x^6)) + O(x^50))) \\ Colin Barker, Oct 13 2016
(PARI) a(n) = (n^2 + 14*n/3 + 1)\6 \\ Charles R Greathouse IV, Oct 13 2016
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Feb 27 2007
EXTENSIONS
More terms from Harvey P. Dale, Apr 11 2012
Offset changed to 0 by Colin Barker, Oct 13 2016
STATUS
approved