This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A240733 #19 Feb 20 2025 20:15:28 %S A240733 1,1,2,3,5,8,13,21,32,50,78,121,187,289,448,693,1072,1658,2564,3966, %T A240733 6134,9487,14673,22695,35101,54288,83964,129862,200850,310643,480452, %U A240733 743085,1149282,1777523,2749182,4251987,6576279,10171116,15731022,24330178,37629950 %N A240733 a(n) = floor(6^n/(2+2*cos(Pi/9))^n). %C A240733 a(n) is the perimeter (rounded down) of a nonaflake after n iterations, let a(0) = 1. The total number of sides is 9*A000400(n). The total number of holes is A002452(n). 2*cos(Pi/9) = 1.87938524... = diagonal b of nonagon (see comments in A123609). %H A240733 Vincenzo Librandi, <a href="/A240733/b240733.txt">Table of n, a(n) for n = 0..1000</a> %H A240733 Kival Ngaokrajang, <a href="/A240733/a240733_1.pdf">Illustration of nonaflake for n = 0..3</a> %H A240733 Wikipedia, <a href="http://en.wikipedia.org/wiki/N-flake">n-flake</a> %p A240733 A240733:=n->floor(6^n/(2+2*cos(Pi/9))^n); seq(A240733(n), n=0..50); # _Wesley Ivan Hurt_, Apr 12 2014 %t A240733 Table[Floor[6^n/(2 + 2*Cos[Pi/9])^n], {n, 0, 50}] (* _Wesley Ivan Hurt_, Apr 12 2014 *) %o A240733 (PARI) {a(n)=floor(6^n/(2+2*cos(Pi/9))^n)} %o A240733 for (n=0, 100, print1(a(n), ", ")) %Y A240733 Cf. A000400, A002452, A123609, A240523 (pentaflake), A240671 (heptaflake), A240572 (octaflake), A240733 (nonaflake), A240734 (decaflake), A240735 (dodecaflake). %K A240733 nonn,easy %O A240733 0,3 %A A240733 _Kival Ngaokrajang_, Apr 11 2014