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!)
A019989 Indices n such that A307672(2*n) = 0. 4
2, 5, 6, 8, 14, 15, 16, 18, 20, 23, 24, 26, 35, 41, 42, 43, 45, 47, 48, 49, 52, 54, 56, 59, 60, 62, 68, 69, 70, 72, 74, 77, 78, 80, 91, 98, 104, 105, 107, 116, 122, 123, 124, 126, 128, 129, 130, 133, 135, 137, 140, 141, 142, 144, 146, 147, 148, 154, 156 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The original definition was: "A threequence, a 3-way partitioning of the integers: define a,b,c,A,B,C by a(0)=true, b(0)=c(0)=A(0)=B(0)=C(0)=false, a(n)=a(m) OR C(m) OR B(m), b(n)= b(m) OR A(m) OR C(m), c(n)= c(m) OR B(m) OR A(m), A(n)= A(m) OR b(m) OR c(m), B(n)= B(m) OR c(m) OR a(m), C(n)= C(m) OR a(m) OR b(m), where m = [ (n+1)/3 ]; sequence gives n such that a(2n) is true." - Bradley Klee, Apr 16 2019
LINKS
R. W. Gosper, J. Z. Hunts, Strange Series for Sierpinski’s Gasket, G4G10 Exchange Book, Vol. 2 (2012), 59-60.
Sean A. Irvine, Java program (github)
MATHEMATICA
iterate[sets_] := With[{ind = {{1, 5, 6}, {2, 6, 4}, {3, 4, 5}, {4, 3, 2}, {5, 1, 3}, {6, 2, 1}} }, Union @@ (3*sets[[#]] + {0, -1, 1}) & /@ ind];
Part[Union @@ # & /@ Transpose[NestList[iterate, Append[Table[{}, 5], {1}], 10]], 1, 1 ;; 59]/2 (* Bradley Klee, Apr 15 2019 *) FractusRadius = {0 -> {4, 0, 5}, 1 -> {5, 1, 3}, 2 -> {3, 2, 4}, 3 -> {2, 3, 1}, 4 -> {0, 4, 2}, 5 -> {1, 5, 0}};
aR0[n_] := Flatten[Position[ Nest[Part[Flatten[# /. FractusRadius], 2 ;; -1] &, {0}, n], 0] - 1][[2 ;; -1]]/2; aR0[5](* Bradley Klee, Apr 16 2019 *)
CROSSREFS
Sequence in context: A028796 A330226 A242422 * A045547 A127143 A242665
KEYWORD
nonn
AUTHOR
EXTENSIONS
New name from Sean A. Irvine, Apr 30 2019
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 24 11:49 EDT 2024. Contains 371936 sequences. (Running on oeis4.)