A235648 Perimeter (rounded down) of a tetraflake-like fractal after n iterations, a(1) = 1 (see comments).
1, 1, 2, 3, 4, 7, 10, 16, 25, 39, 61, 97, 155, 249, 404, 657, 1073, 1759, 2892, 4768, 7877, 13036, 21602, 35838, 59508, 98885, 164416, 273502, 455137, 757628, 1261470, 2100791, 3499106, 5828894, 9710891, 16179575, 26958966, 44922289, 74858052, 124746848, 207889317
Offset: 1
Keywords
Links
- Kival Ngaokrajang, Illustration of initial terms
- Eric Weisstein's World of Mathematics, Box Fractal
- Wikipedia, n-flake
- Wikipedia, Vicsek Fractal
Crossrefs
Programs
-
PARI
{a=18;c=1;print1(1,", "); for (n=1,50, c=4*c+3^(n-1); a=5*a-2*c; aa=floor((a*(1/3)^n)/18); print1(aa,", "));}
Formula
Floor((5*a(n-1)-2*(4*c(n-1)+3^(n-1)))/18) for n >1, a(1)=18, c(1)=1.
Comments