OFFSET
0,2
COMMENTS
See A329919 for further details about the "Square Multiscale" substitution.
LINKS
Rémy Sigrist, Table of n, a(n) for n = 0..10000
Yotam Smilansky and Yaar Solomon, Multiscale Substitution Tilings, arXiv:2003.11735 [math.DS], 2020.
FORMULA
a(n+1) - a(n) = 0 or 1.
EXAMPLE
The first terms, alongside the corresponding sizes, are:
n a(n) Tile sizes
- ---- -----------------------------------------------
0 1 {1}
1 2 {3/5, 1/5}
2 3 {9/25, 1/5, 3/25}
3 4 {27/125, 1/5, 3/25, 9/125}
4 5 {1/5, 81/625, 3/25, 9/125, 27/625}
5 5 {81/625, 3/25, 9/125, 27/625, 1/25}
6 6 {3/25, 243/3125, 9/125, 27/625, 1/25, 81/3125}
7 6 {243/3125, 9/125, 27/625, 1/25, 81/3125, 3/125}
PROG
(PARI) { sc = [1]; for (n=0, 68, print1 (#sc", "); s = vecmax(sc); sc = setunion(setminus(sc, [s]), Set([3*s/5, s/5]))) }
CROSSREFS
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Aug 17 2022
STATUS
approved