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!)
A355681 The "coarser" of 2 representations of the Cantor middle thirds set viewed from a quarter point that lies at a(0) (the third 1 in the data). 2
-1, 1, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, -1, 1, 0, 0, -1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
-13
COMMENTS
Each occurrence of the consecutive values -1, 1 represents the 2 quarter points of a scaled image of the Cantor middle thirds set whose endpoints can be considered to lie halfway between these terms and the 0's either side. This occurs in both halves of the figure in the examples, which also illustrates the relevance of the values of the terms.
a(n) is the restriction of a function, f, which is defined for all integers as specified in the formula section. For reasons of presentation, the offset is chosen to be -13. (Beyond -13, the next nonzero value of f is f(-68) = 1.) Essentially though, we can consider f to be giving a microscopic view of the middle thirds set around either quarter point.
f:Z -> {-1,0,1} is used to generate the closure under multiplication by -3 of the scaled Cantor middle thirds set spanning [-3/2, 1/2]. So this process also generates similar Cantor sets spanning [-3/2, 9/2], [-27/2, 9/2], [-27/2, 81/2], ... . 0 is clearly a quarter point in all these intervals.
Formally, define c: Z -> P(R) so that c(n) is the empty set if f(n) = 0, otherwise the translated Cantor middle thirds set centered at n+f(n)/6 and scaled by 2/3. Let C_oo be the union of c(m) for all n in Z. C_oo is the closure under multiplication by -3 of the scaled translated Cantor middle thirds set spanning [-3/2, 1/2].
LINKS
Eric Weisstein's World of Mathematics, Cantor Set.
FORMULA
a(n) = f(n), where f:Z -> {-1,0,1}; f(0) = 1, for integer m, -1 <= i <= 1, writing x = -3*f(-m) - 6i, f(3m+i) = if |x-4| < 2 then x-4 otherwise if |x+4| < 2 then x+4 otherwise 0.
The generation of f can be understood, in the manner of a morphism, using the following table:
f(-m) -> f(3m-1) f(3m) f(3m+1)
-1 -> 0 -1 1
0 -> 0 0 0
1 -> -1 1 0
a(3n) = A355682(2n) = f(-n).
a(9n) = a(n).
EXAMPLE
Illustration of the generation of the scaled Cantor middle thirds set spanning [-3/2, 9/2], the line titled "Cantor" showing the similar sets of span 2/3 centered at n+a(n)/6 that are mentioned in the comments:
n: -2 -1 0 1 2 3 4 5
| | | | | | | |
Sixths: :..:..:..:..:..:..:..:..:..:..:..:..:..:..:
"Cantor": |<->| |<->| |<->| |<->|
^ ^ ^ ^
| | | |
|< >| |< >|
| | | |
a(n): 0 -1 1 0 0 -1 1 0
.
Notice that n=0 marks the 1/4 point of the scaled middle thirds set spanning [-1/6, 1/2], the 3/4 point of the similar set spanning [-3/2, 1/2] and the 1/4 point of the set spanning [-3/2, 9/2]. This continues at larger scales, 0 being at the 3/4 point of the similar set spanning [-27/2, 9/2], the 1/4 point of [-27/2, 81/2] and so on. Likewise at smaller scales, n=0 marks the 3/4 point of the similar set spanning [-1/6, 1/18], the 1/4 point of [-1/54, 1/18] etc.
PROG
(PARI) a(n) = {if (n==0, 1,
my(x); x = -3*a(-n\/3) - 6*((n+1)%3-1);
if(abs(x-4)<2, x-4, if(abs(x+4)<2, x+4, 0)))}
CROSSREFS
Sequence in context: A181115 A284527 A151666 * A214284 A361466 A191747
KEYWORD
sign,easy
AUTHOR
Peter Munn, Jul 14 2022
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 23 10:07 EDT 2024. Contains 371905 sequences. (Running on oeis4.)