OFFSET
0,3
COMMENTS
a(n) is the maximum number of regions that can be formed in the plane by drawing n n-armed V's. This is the main diagonal of A386481.
LINKS
David O. H. Cutler, Jonas Karlsson, and Neil J. A. Sloane, Cutting a Pancake with an Exotic Knife, arXiv:2511.15864[math.CO], v3, April 19 2026.
N. J. A. Sloane, Illustration for a(3) = 34.
N. J. A. Sloane, Illustration for a(4) = 109.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
From Enrique Navarrete, Mar 26 2026: (Start)
G.f.: (4*x^4 - x^3 + 12*x^2 - 4*x + 1)/(1 - x)^5.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5).
E.g.f.: (1/2)*(x^4 + 5*x^3 + 6*x^2 + 2)*exp(x).
a(n) = A092365(n) - (n-1), n > 0. (End)
MATHEMATICA
a[n_]:=(n^4-n^3+2*n^2-2*n+2)/2; Array[a, 48, 0] (* or *)
LinearRecurrence[{5, -10, 10, -5, 1}, {1, 1, 7, 34, 109, 271}, 48] (* or *)
CoefficientList[Series[(-1+4x-12x^2+x^3-4x^4)/(-1+x)^5, {x, 0, 47}], x] (* James C. McMahon, Mar 25 2026 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Mar 25 2026
STATUS
approved
