OFFSET
0,2
COMMENTS
Triameter of the n-Sierpinski carpet graph.
Binomial transform is 0,8,48,224,960,... A211012 shifted. - R. J. Mathar, Apr 07 2022
LINKS
Eric Weisstein's World of Mathematics, Graph Triameter
Eric Weisstein's World of Mathematics, Sierpinski Carpet Graph
Index entries for linear recurrences with constant coefficients, signature (4,-3).
FORMULA
a(n) = 4*A024023(n).
a(n) = 4*a(n-1) - 3*a(n-2).
G.f.: 8*x/((1 - x)*(1 - 3*x)).
a(n) = 8*A003462(n). - R. J. Mathar, Apr 07 2022
MATHEMATICA
Table[4 (3^n - 1), {n, 0, 20}]
4 (3^Range[0, 20] - 1)
LinearRecurrence[{4, -3}, {8, 32}, {0, 20}]
CoefficientList[Series[8 x/((1 - x) (1 - 3 x)), {x, 0, 20}], x]
PROG
(PARI) for(n=0, 30, print1(4*(3^n-1), ", ")) \\ G. C. Greubel, Apr 09 2018
(Magma) [4*(3^n -1): n in [0..30]]; // G. C. Greubel, Apr 09 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Apr 09 2018
STATUS
approved