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 A375388 #8 Aug 17 2024 09:16:44 %S A375388 1,1,1,1,1,2,1,2,4,2,1,2,1,1,3,2,3,1,3,9,6,9,3,2,6,4,6,2,3,9,6,9,3,1, %T A375388 3,2,3,1,1,4,3,5,2,5,3,4,1,4,16,12,20,8,20,12,16,4,3,12,9,15,6,15,9, %U A375388 12,3,5,20,15,25,10,25,15,20,5,2,8,6,10,4,10,6,8,2 %N A375388 A family of squares S(m), m > 0, read by squares and then by rows; square S(1) is [1, 1; 1, 1]; for m > 0, square S(m+1) is obtained by replacing each subsquare [t, u; v, w] in S(m) by [t, t+u, u; t+v, t+u+v+w, u+w; v, v+w, w]. %C A375388 We apply the following substitutions to transform S(m) into S(m+1): %C A375388 t----t+u----u %C A375388 | | | %C A375388 t--u | t+u | %C A375388 | | --> t+v----+----u+w %C A375388 v--w | v+w | %C A375388 | | | %C A375388 v----v+w----w %C A375388 This sequence can be seen as a two-dimensional variant of A049456. %C A375388 The base of T(m) corresponds to the m-th row of A049456. %C A375388 As A355855, this sequence is related to nonperiodic tilings based on tiles decorated with elements of F_p for some odd prime number p; here we use square tiles, there triangular tiles. %H A375388 Rémy Sigrist, <a href="/A375388/a375388.png">Colored representation of S(9) mod 3</a> %H A375388 Rémy Sigrist, <a href="/A375388/a375388_1.png">Colored representation of S(9) mod 7</a> %F A375388 S(m)(n, k) = A049456(m, n) * A049456(m, k). %e A375388 S(1) is: %e A375388 1 1 %e A375388 1 1 %e A375388 S(2) is: %e A375388 1 2 1 %e A375388 2 4 2 %e A375388 1 2 1 %e A375388 S(3) is: %e A375388 1 3 2 3 1 %e A375388 3 9 6 9 3 %e A375388 2 6 4 6 2 %e A375388 3 9 6 9 3 %e A375388 1 3 2 3 1 %e A375388 S(4) is: %e A375388 1 4 3 5 2 5 3 4 1 %e A375388 4 16 12 20 8 20 12 16 4 %e A375388 3 12 9 15 6 15 9 12 3 %e A375388 5 20 15 25 10 25 15 20 5 %e A375388 2 8 6 10 4 10 6 8 2 %e A375388 5 20 15 25 10 25 15 20 5 %e A375388 3 12 9 15 6 15 9 12 3 %e A375388 4 16 12 20 8 20 12 16 4 %e A375388 1 4 3 5 2 5 3 4 1 %o A375388 (PARI) S(n) = { matrix(2^(n-1)+1, 2^(n-1)+1, i,j, A002487(2^(n-1)-1+i) * A002487(2^(n-1)-1+j)); } %Y A375388 Cf. A002487, A049456, A355855. %K A375388 nonn,tabf %O A375388 1,6 %A A375388 _Rémy Sigrist_, Aug 13 2024