This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A342625 #18 May 29 2021 04:01:32 %S A342625 1,1,0,-1,-2,-3,-3,-3,-4,-4,-3,-2,-3,-1,-2,-4,-5,-6,-6,-6,-5,-6,-7,-7, %T A342625 -6,-7,-7,-6,-8,-8,-8,-6,-3,-5,-4,0,1,2,5,3,4,7,8,10,10,9,10,8,10,9, %U A342625 11,11,11,8,7,6,4,0,-1,-5,-2,-7,-3,-6,-4,-9 %N A342625 The y-coordinates of the vectors used to construct the Babylonian Wurm. %C A342625 Equivalently, this sequence gives the differences of the y-coordinates of successive vertices of the Babylonian Wurm. %H A342625 James Rayman, <a href="/A342625/b342625.txt">Table of n, a(n) for n = 1..10000</a> %H A342625 <a href="/index/Con#coordinates_2D_curves">Index entries for sequences related to coordinates of 2D curves</a> %F A342625 a(n) = A342623(n+1) - A342623(n). %o A342625 (Python) for i in range(10000): print(i+1, wurm(i+1)[1] - wurm(i)[1]) # wurm is defined in the program for A256175. %Y A342625 See A256175 for the definition of the Babylonian Wurm. %Y A342625 See A342624 for the x-coordinates. %Y A342625 Cf. A342622, A342623, A342626, A342627. %K A342625 sign %O A342625 1,5 %A A342625 _James Rayman_, Apr 09 2021