A293144
Number of vertices in a Menger Sponge constructed from a cubic lattice: a(n) = 20*a(n-1) - 24*A293143(n-1).
Original entry on oeis.org
8, 64, 896, 15616, 295808, 5789440, 114790784, 2287878400, 45694209920, 913377753856, 18263504780672, 365237697021184, 7304494763023232, 146087821875273472, 2921739850525976960, 58434664314989709568, 1168692224736473884544
Offset: 0
For a(0) we start with a simple cube, having a(0) = 8 corners.
For a(1), the cube is subdivided into 27 smaller cubes forming a lattice of 64 vertices. 7 cubes are removed (but the cubes have no facial or internal vertices to remove until the next stage).
Twenty a(1) cubes, each with 64 vertices, are then combined to form the lattice for a(2). The overlapped vertices of 24 faces (each with 16 vertices) are removed. Thus a(2) = (20*64) - (24*16) = 1280 - 384 = 896. The faces of the cubes are the Sierpinski Carpet grid of A293143.
-
CoefficientList[Series[8 (1 - 24 x + 131 x^2 - 156 x^3)/((1 - x) (1 - 3 x) (1 - 8 x) (1 - 20 x)), {x, 0, 15}], x] (* Michael De Vlieger, Oct 09 2017 *)
-
Vec(8*(1 - 24*x + 131*x^2 - 156*x^3) / ((1 - x)*(1 - 3*x)*(1 - 8*x)*(1 - 20*x)) + O(x^30)) \\ Colin Barker, Oct 09 2017
-
A293144(n)=(255+133*3^(n+1)+63*4^n*5^(n+1)+3553*8^(n-1))*64/11305 \\ M. F. Hasler, Oct 16 2017
Edited to include initial term 8 by
M. F. Hasler, Oct 16 2017
A153490
Sierpinski carpet, read by antidiagonals.
Original entry on oeis.org
1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1
Offset: 1
The Sierpinski carpet matrix reads
1 1 1 1 1 1 1 1 1 ...
1 0 1 1 0 1 1 0 1 ...
1 1 1 1 1 1 1 1 1 ...
1 1 1 0 0 0 1 1 1 ...
1 0 1 0 0 0 1 0 1 ...
1 1 1 0 0 0 1 1 1 ...
1 1 1 1 1 1 1 1 1 ...
1 0 1 1 0 1 1 0 1 ...
1 1 1 1 1 1 1 1 1 ...
(...)
so the antidiagonals are
{1},
{1, 1},
{1, 0, 1},
{1, 1, 1, 1},
{1, 1, 1, 1, 1},
{1, 0, 1, 1, 0, 1},
{1, 1, 1, 0, 1, 1, 1},
{1, 1, 1, 0, 0, 1, 1, 1},
{1, 0, 1, 0, 0, 0, 1, 0, 1},
{1, 1, 1, 1, 0, 0, 1, 1, 1, 1},
{1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1},
{1, 0, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1},
...
Cf.
A292688 (n-th antidiagonal concatenated as binary number),
A292689 (decimal representation of these binary numbers).
Cf.
A293143 (number of vertex points in a Sierpinski Carpet).
-
<< MathWorld`Fractal`; fractal = SierpinskiCarpet;
a = fractal[4]; Table[Table[a[[m]][[n - m + 1]], {m, 1, n}], {n, 1, 12}];
Flatten[%]
-
A153490_row(n,A=Mat(1))={while(#AM. F. Hasler, Oct 23 2017
A293834
Triangle whose n-th row lists the squares to be removed at the n-th iteration of the construction of the Sierpinski carpet.
Original entry on oeis.org
5, 11, 14, 17, 38, 44, 65, 68, 71, 29, 32, 35, 38, 41, 44, 47, 50, 53, 110, 116, 119, 125, 128, 134, 191, 194, 197, 200, 203, 206, 209, 212, 215, 272, 275, 278, 290, 293, 296, 353, 359, 371, 377, 434, 437, 440, 452, 455, 458, 515, 518, 521, 524, 527, 530, 533, 536, 539, 596
Offset: 1
At the first iteration, the middle square, which is the 5th of the 9 squares, is removed, so the first row reads [5]. This leaves 9 - 1 = 8 squares.
At the next iteration, in each of the 8 remaining squares, each one subdivided into 3 X 3 smaller squares, the middle square is removed. The numbers of these subsquares are 11, 14 and 17 in the second row, 38 and 44 in the middle row, and 65, 68 and 71 in the penultimate row, so row 2 = [11, 14, 17, 38, 44, 65, 68, 71]. (The subsquares are numbered from 1 to 81, i.e., all of the 9 X 9 subsquares, including the "empty" ones, get a number. Otherwise said, the number of a square equals (y-1)*3^n+x, if x,y are the coordinates both ranging from 1 to 3^n.)
This leaves 8*9 - 8 = 8*(9 - 1) = 64 "nonempty" squares. Therefore, the next row has 64 terms. The first 9 of these correspond to the 2nd, 5th, 8th, ... square of the 2nd row, i.e., numbers 29, 32, ..., 53, in steps of 3. The next two terms are the numbers of the 2nd and not the 5th, but the 8th square of the 5th row, thus 4*27 + 2 = 110 and 116.
-
{A293834_row(n,B=[0],u=vector(8,i,1))=for(k=2,n, my(v=vector(8,j,if(j>3,if(j>5,j-6+2*3^k,j*2-8+3^k),j-1))); B=concat(apply(t->t*u+v,B+B\3^k*3^k*2))*3);apply(t->t+3^n+2,Set(B))}
A381517
Perimeter of the Sierpiński carpet at iteration n.
Original entry on oeis.org
4, 16, 80, 496, 3536, 26992, 212048, 1684720, 13442768, 107437168, 859182416, 6872514544, 54977282000, 439809752944, 3518452514384, 28147543587568, 225180119118032, 1801440264196720, 14411520047331152, 115292154179921392, 922337214843187664, 7378697662956950896, 59029581136289955920, 472236648588222693616
Offset: 0
For n=0, a(0) = 4, the geometric representation is a square.
For n=3, a(3) = 496.
Showing 1-4 of 4 results.
Comments