A158494 Boundary area of the T-square fractal.
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Wikipedia, T-square (fractal)
- Good math, bad math, Geometric L-systems
- Index entries for linear recurrences with constant coefficients, signature (6,-11,6).
Crossrefs
Programs
-
Mathematica
CoefficientList[Series[4*(1 - 5*x^2 + 2*x^3 + 4*x^4)/((1 - x)*(1 - 2*x)*(1 - 3*x)), {x, 0, 30}], x] (* Wesley Ivan Hurt, Jan 20 2017 *)
-
PARI
a(n)=4*((n==1)+(n==2)*6+(n>=3)*(1-2^(n-1)+23*3^(n-3))) \\ Jaume Oliver Lafont, Mar 22 2009
-
PARI
Vec(4*x*(1-5*x^2+2*x^3+4*x^4) / ((1-x)*(1-2*x)*(1-3*x)) + O(x^30)) \\ Colin Barker, May 22 2017
Comments