login
A393441
a(n) = (n^4-n^3+2*n^2-2*n+2)/2.
1
1, 1, 7, 34, 109, 271, 571, 1072, 1849, 2989, 4591, 6766, 9637, 13339, 18019, 23836, 30961, 39577, 49879, 62074, 76381, 93031, 112267, 134344, 159529, 188101, 220351, 256582, 297109, 342259, 392371, 447796, 508897, 576049, 649639, 730066, 817741, 913087, 1016539, 1128544, 1249561, 1380061, 1520527, 1671454, 1833349, 2006731, 2192131, 2390092
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.
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