Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #53 Aug 23 2024 16:04:34
%S 1,6,18,42,90,186,366,690,1278,2322,4182,7482,13326,23682,42006,74442,
%T 131838,233394,413094,731034,1293582,2288898,4049910,7165674,12678366,
%U 22431954,39688902,70221498,124242606,219821730,388929174,688129674,1217502846,2154118770
%N Start with a Koch snowflake tile, and repeatedly append along the tiles of the previous step tiles scaled by a factor of sqrt(1/3) and rotated by 90 degrees that do not overlap with any prior tile and of which one third of the perimeter matches one sixth of the perimeter of adjacent prior tiles; a(n) gives the number of tiles appended at n-th step.
%C One continuous third of the perimeter of a Koch snowflake tile at step n+1 coincides with one sixth of the perimeter of an adjacent Koch snowflake tile at step n; this is the maximum matching that can be achieved with the given scaling and rotation parameters (see illustration of two adjacent Koch snowflakes at consecutive steps in Links section).
%C A Koch snowflake tile at step n+1 touches one or two Koch snowflakes tile at step n.
%C The bounding hexagons of the Koch snowflake tiles at step n lie on a trihexagonal tiling (see representation of the bounding hexagons in Links sections; hexagons of the same color lie on the same trihexagonal tiling).
%C We can also compute the sequence by mean of necklaces:
%C - let h_2 = 0 and K_2 = (111111) (this is a necklace with six 1's),
%C - for n = 2, 3, ...:
%C h_{n+1} = h_n + the number of occurrences of "100001" in K_n
%C apply the following substitutions to K_n, in that order:
%C - "100001" --> "00" (this loop will come off and form a hole),
%C - "1" --> "110",
%C - K_{n+1} is the necklace obtained after these substitutions,
%C - now we have a(n) = #K_n + 6 * h_n,
%C - the sequence {h_n} corresponds to the number of "holes" in the construction,
%C - the sequence {K_n} encodes the configuration of the tiles at n-th step (excluding holes),
%C - we can recover this configuration, up to some rotation, as follows:
%C - start from the origin pointing to the right:
%C - for m = 1..#K_n:
%C - place a Koch snowflake with an arm pointing to the right,
%C - move one step forward,
%C - if K_n(m) = 1 then turn 60 degrees to the left,
%C - otherwise turn 60 degrees to the right,
%C - at the end, we are at the origin again.
%C Apparently, the number of holes is related to A077879 in the following manner:
%C - h_{n+1} - h_n = 6*A077879(n-6) for n >= 6.
%H Aperiodic Rhomb Tiling, <a href="http://www.hibma.org/wpaperiodictiling/index.php/2x2-supertiles/koch-tiles/">Koch Tiles</a>
%H Ben Van Dusen, Billy Scannel, Richard Taylor, <a href="https://arxiv.org/abs/1209.2180">A Fractal Comparison of Escher and Koch Tessellations</a>, arXiv:1209.2180 [physics.pop-ph], 2012-2013.
%H Rémy Sigrist, <a href="/A330844/a330844.png">Two adjacent Koch snowflakes at consecutive steps</a>
%H Rémy Sigrist, <a href="/A330844/a330844_1.png">Representation of the bounding hexagons for the first 10 steps</a>
%H Rémy Sigrist, <a href="/A330844/a330844_2.png">Representation of the figure after 13 steps</a>
%H Rémy Sigrist, <a href="/A330844/a330844.txt">C# program for A330844</a>
%H Rémy Sigrist, <a href="/A330844/a330844_1.txt">C++ program for A330844</a>
%H Spacefilling Curves, <a href="https://spacefillingcurves.wordpress.com/2019/09/01/on-filling-the-koch-snowflake/">On filling the Koch Snowflake</a>
%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Koch_snowflake">Koch snowflake</a>
%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Trihexagonal_tiling">Trihexagonal tiling</a>
%o (C#) // See Links section.
%o (C++) // See Links section.
%Y Cf. A077879, A321257.
%K nonn
%O 1,2
%A _Rémy Sigrist_, Feb 16 2020