A242823 Perimeter (rounded down) of Pi-shaped box fractal after n iterations.
1, 2, 5, 15, 39, 103, 269, 700, 1821, 4736, 12313, 32016, 83242, 216429, 562716, 1463063, 3803966, 9890311, 25714810, 66858508, 173832121, 451963515, 1175105140, 3055273364, 7943710747, 20653647942, 53699484649
Offset: 0
Keywords
Links
- Kival Ngaokrajang, Illustration of initial terms
- Eric Weisstein's World of Mathematics, Box Fractal
- Wikipedia, Vicsek fractal
Programs
-
PARI
{a=28;b=1;print1(1,", "); for (n=2,50, b=b*0.2; a=(a*13-16*2^(n-1)-8); print1(floor(a*b/28),", "))}
Comments