Sierpinski Triangle Adjacency

For each positive step integer n n , a set of triangles consists of numbers, which indicate how many triangles inside are either vertex- or edge-adjacent to another. The following is the explanation of the diagram above:

If n = 1 n = 1 , then we have only one triangle, so the value is 1 1 .

If n = 2 n = 2 , then we count four mini triangles. Since each triangle is tangent to the other three, their values are 4 4 .

If n = 3 n = 3 , then we count thirteen triangles inside. Then, each set of smaller triangles contains different values position-wise.

Define A ( n ) A(n) to be the sum of all triangle values for each n n . Considering the diagram and the pattern, evaluate A ( 20 ) A(20) .


The answer is 15684238348.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

The recursive formula is

A n = 3 ( A n 1 + 2 + ( 2 n 1 1 ) ) + 3 ( 2 n 1 1 ) + 1 , A 1 = 1 A_n = 3*(A_{n-1} + 2 + (2^{n-1} - 1))+3(2^{n-1}-1)+1, A_1=1

which has explicit form

A n = 0.5 ( 1 3 2 2 + n + 3 2 + n ) A_n = 0.5*(-1 - 3*2^{2 + n} + 3^{2 + n})

Got a proof?

Pi Han Goh - 3 years, 7 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...