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!)
A229214 If 1, 2, and 3 represent the three 2D vectors (1,0), (0.5,sqrt(3)/2) and (-0.5,sqrt(3)/2) and -1, -2 and -3 are the negation of these vectors, then this sequence represents the Gosper flowsnake. 7
1, 2, -1, 3, 1, 1, -3, 1, 2, 2, -1, -2, 3, 2, 3, -1, -1, -3, 1, -2, -1, 3, -1, -3, -2, 3, 3, 2, 1, 2, -1, 3, 1, 1, -3, 1, 2, -1, 3, 1, 1, -3, -2, -3, -3, 2, 3, 1, -3, 1, 2, -1, 3, 1, 1, -3, 1, 2, 2, -1, -2, 3, 2, 1, 2, 2, -1, -2, 3, 2, 3, -1, -1, -3, 1, -2, -1, -2, -3, 2, 1, -2, -2, -1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The sequence is generated by the rewriting rules:
P(1) = 1,2,-1,3,1,1,-3;
P(2) = 1,2,2,-1,-2,3,2 and
P(3) = 3,-1,-3,-2,3,3,2;
P(-x) = reverse(-P(x)) for x=1,2,3, so
P(-1) = 3,-1,-1,-3,1,-2,-1,
P(-2) = -2,-3,2,1,-2,-2,-1, and
P(-3) = -2,-3,-3,2,3,1,-3.
The start is 1.
LINKS
Arie Bos, Index notation of grid graphs, arXiv:1210.7123 [cs.CG], 2012.
Wikipedia, Gosper curve
EXAMPLE
Start with 1, you get in the first step 1, 2, -1, 3, 1, 1, -3,
and in the 2nd step 1, 2, -1, 3, 1, 1, -3, 1, 2, 2, -1, -2, 3, 2, 3, -1, -1, -3, 1, -2, -1, 3, -1, -3, -2, 3, 3, 2, 1, 2, -1, 3, 1, 1, -3, 1, 2, -1, 3, 1, 1, -3, -2, -3, -3, 2, 3, 1, -3
and with each step the length increases by a factor 7.
PROG
(PARI) A229214(n, P=[[1, 2, -1, 3, 1, 1, -3], [1, 2, 2, -1, -2, 3, 2], [3, -1, -3, -2, 3, 3, 2]], a=P[1])={while(#a<n, a=concat(apply(i->if(i<0, -Vecrev(P[-i]), P[i]), a))); a} \\ M. F. Hasler, Aug 06 2015
CROSSREFS
Cf. A261180 (as 0..5). Coordinates: A334485, A334486.
Cf. A229215 (Gosper island directions).
Sequence in context: A354203 A186007 A212623 * A349685 A218578 A006346
KEYWORD
easy,sign
AUTHOR
Arie Bos, Sep 19 2013
EXTENSIONS
Definition corrected by Kerry Mitchell, Aug 06 2015
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 09:30 EDT 2024. Contains 371967 sequences. (Running on oeis4.)