OFFSET
0,1
COMMENTS
Number of vertices into building blocks of 3d objects with 8 vertices.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (3,-2).
FORMULA
a(n) = a(n-1)*2 + 16.
G.f.: 16*(2-x)/(2*x^2-3*x+1). - Harvey P. Dale, Aug 23 2012
From Elmo R. Oliveira, Dec 08 2025: (Start)
E.g.f.: 16*exp(x)*(3*exp(x) - 1).
EXAMPLE
a(0) = 8+16+8 = 32.
a(1) = 8+16+32+16+8 = 80.
a(2) = 8+16+32+64+32+16+8 = 176.
a(3) = 8+16+32+64+128+64+32+16+8 = 368.
MATHEMATICA
LinearRecurrence[{3, -2}, {32, 80}, 40] (* or *) Table[8(3*2^n-2), {n, 40}] (* Harvey P. Dale, Aug 23 2012 *)
CoefficientList[Series[-((16 (x - 2))/(2 x^2 - 3 x + 1)), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 02 2014 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Odimar Fabeny, Apr 30 2012
STATUS
approved
