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!)
A297346 List of successive x-coordinates in the Babylonian Spiral. 3
0, 0, 1, 3, 5, 7, 7, 6, 4, 0, -4, -7, -9, -9, -8, -6, -2, 3, 9, 15, 21, 26, 29, 29, 28, 24, 17, 10, 4, 4, 5, 7, 13, 21, 28, 32, 32, 31, 29, 24, 15, 6, -1, -7, -8, -6, -1, 9, 17, 21, 15, 4, -7, -18, -26, -33, -39, -43, -43, -42, -37, -25, -15, -12, -18, -30, -39, -47, -52, -53, -51, -48, -42, -33, -22, -10, 3, 17, 31, 45, 56, 62, 54, 40, 27 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
The "Babylonian Spiral" is defined and illustrated in A256111. See also the MathPickle link.
LINKS
Lars Blomberg, Illustrations of 100, 1000 and 10000 terms of the spiral.
MathPickle, Babylonian Spiral
Hugo Pfoertner, Illustration of spiral using Plot 2.
EXAMPLE
The first few points are (0,0), (0,1), (1,2), (3,2) -- thus the sequence starts out 0, 0, 1, 3.
MATHEMATICA
NextVec[{x_, y_}] :=
Block[{n = x^2 + y^2 + 1}, While[SquaresR[2, n] == 0, n++];
TakeSmallestBy[
Union[Flatten[(Transpose[
Transpose[Tuples[{1, -1}, 2]] #] & /@
({{#[[1]], #[[2]]}, {#[[2]], #[[1]]}})) & /@
PowersRepresentations[n, 2, 2], 2]],
Mod[ArcTan[#[[2]], #[[1]]] - ArcTan[y, x], 2 Pi] &, 1][[1]]
]
Accumulate[NestList[NextVec, {0, 1}, 500]][[;; , 1]]
CROSSREFS
The y-coordinates are given in A297347. Norms of vectors are given in A256111.
Sequence in context: A092257 A316189 A342668 * A342622 A211517 A254935
KEYWORD
easy,sign,look
AUTHOR
Alex Meiburg, Dec 28 2017
EXTENSIONS
~
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 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)