OFFSET
1,1
COMMENTS
Construction rule is same as for box and Vicsek fractals, but uses 6 boxes at initial stage (n = 1) and has only one symmetrical axis. The scale factor of these fractals is 1/3. The actual tetraflake fractals have scale factor of 1/2.
LINKS
Kival Ngaokrajang, Illustration of initial terms
Eric Weisstein's World of Mathematics, Box Fractal
Wikipedia, n-flake
Wikipedia, Vicsek Fractal
Index entries for linear recurrences with constant coefficients, signature (6, -7).
FORMULA
Conjecture from Colin Barker, Apr 21 2014: (Start)
a(n) = sqrt(2)*((3-sqrt(2))^n*(-1+sqrt(2))+(1+sqrt(2))*(3+sqrt(2))^n).
a(n) = 6*a(n-1)-7*a(n-2).
G.f.: 4*x*(-7*x+4) / (7*x^2-6*x+1). (End)
MATHEMATICA
LinearRecurrence[{6, -7}, {16, 68}, 30] (* Harvey P. Dale, Jun 14 2014 *)
PROG
(Small Basic)
a[0] = 10
a[1] = 16
For n = 2 To 20
t1 = a[n-1]*3
t2 = a[n-2]*2
t3 = 0
If n >= 3 then
for i = 3 to n
t3 = t3 + a[i-3]*2*Math.Power(3, n-i+1)
EndFor
EndIf
a[n] = t1 + t2 + t3
TextWindow.Write(a[n-1]+", ")
EndFor
CROSSREFS
KEYWORD
nonn
AUTHOR
Kival Ngaokrajang, Apr 20 2014
EXTENSIONS
More terms from Harvey P. Dale, Jun 14 2014
STATUS
approved