login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A292686 Sierpinski-type iteration: start with a(0)=1, at each step, replace 0 with 000 and 1 with 101. 3
1, 101, 101000101, 101000101000000000101000101, 101000101000000000101000101000000000000000000000000000101000101000000000101000101 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
See A292687 for the decimal representation of a(n) viewed as a "binary number", i.e., as written in base 2.
The Sierpinski carpet (A153490) can be seen as 2-dimensional version of this 1-dimensional variant. The classical Sierpinski gasket triangle (Pascal's triangle mod 2) and "Rule 18" (or Rule 90, A070886) and "Rule 22" (A071029) have similar graphs.
The n-th term a(n) has 3^n digits, the middle third of which are all zero. The digits of a(n) are again the first and last 3^n digits of a(n+1), separated by 3^n zeros.
LINKS
Michael Coons and James Evans, A sequential view of self--similar measures, or, What the ghosts of Mahler and Cantor can teach us about dimension, arXiv:2011.10722 [math.NT], 2020. See Figure 2 p. 2.
FORMULA
a(n+1) = convert(5*a(n), from base 8, to base 2).
a(n+1) = (100^(3^n)+1)*a(n).
a(n) = Product_{k=0 .. n-1} (100^(3^k)+1).
EXAMPLE
a(0) = 1 -> 101 = a(1);
a(1) = 101 -> concat(101,000,101) = 101000101 = a(2).
MATHEMATICA
A292686[nmax_]:=FoldList[Times, 1, 100^(3^Range[0, nmax-1])+1]; A292686[5] (* Paolo Xausa, May 13 2023 *)
PROG
(PARI) a(n, a=1)=for(k=1, n, a=fromdigits(binary(a)*5, 8)); fromdigits(binary(a), 10) \\ Illustration of the first formula.
(PARI) A292686(n)=prod(k=0, n-1, 100^(3^k)+1)
CROSSREFS
Cf. A292687 for the decimal representation of a(n) viewed as a "binary number", i.e., as written in base 2.
Cf. A153490 (Sierpinski carpet), A047999 (Sierpinski gasket = Pascal's triangle mod 2), A070886 (Rule 18 / Rule 90), A071029 (Rule 22).
Cf. A088917.
Sequence in context: A365994 A262645 A138826 * A138720 A262627 A259199
KEYWORD
nonn
AUTHOR
M. F. Hasler, Oct 20 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)