For each positive step integer , 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 , then we have only one triangle, so the value is .
If , then we count four mini triangles. Since each triangle is tangent to the other three, their values are .
If , then we count thirteen triangles inside. Then, each set of smaller triangles contains different values position-wise.
Define to be the sum of all triangle values for each . Considering the diagram and the pattern, evaluate .
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.
The recursive formula is
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 )