OFFSET
1,2
COMMENTS
Submitted on behalf of a third-party: mecejide and ericabq from the Polytope Discord.
LINKS
H. K. Kim, On regular polytope numbers, Proceedings of the American Mathematical Society, 131(1), 65-75 (2002).
Polytope Wiki, Tetrahemihexahedron.
Wikipedia, Tetrahemihexahedron.
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
a(n) = (n + 2)*(4*n^2 - 5*n + 3)/6.
From Stefano Spezia, May 30 2026: (Start)
G.f.: x*(1 + 2*x + 2*x^2 - x^3)/(1 - x)^4.
E.g.f.: exp(x)*(6 + 15*x^2 + 4*x^3)/6 - 1. (End)
MATHEMATICA
a[n_] := (4*n^3 + 3*n^2 - 7*n + 6)/6; Array[a, 45] (* Amiram Eldar, May 30 2026 *)
PROG
(Python)
def A394826(n): return n*(n*(4*n+3)-7)//6+1 # Chai Wah Wu, Jun 05 2026
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Keith J. Bauer, May 29 2026
STATUS
approved
