cp's OEIS Frontend

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.

A202407 Numerators of series coefficients for Archimedes's spiral that transforms into Galileo's spiral.

Original entry on oeis.org

0, 1, -1, 1, -1, 0, -1, -1, 17, 587, 3151, -173, -2641109, -6343201, 29002301, 24753572807, 6013935944287, -979056822493, -11395219462649, -4313800586682649, -2178360615103441, 74893762899375939059, 5307412498351127900521
Offset: 0

Views

Author

Mikhail Gaichenkov, Dec 19 2011

Keywords

Comments

The curve defined by the differential equation in polar coordinates r'(t)^2 + r(t)^2 = t^2 with r(0)=0, r"(0) > 0. Solution is represented by a power series in z=t^2 (satisfying the differential equation 4*z*r'(z)^2 + r(z)^2 = z). The sequence lists coefficients of t^(2*n) (or z^n) in this series.
For large t, the curve represents Archimedes's spiral. As t vanishes, the curve transforms into a Galileo spiral. The junction point of the curve and the ray uniformly rotated in the origin coordinates moves uniformly accelerated.
Let L_{A} and L_{AG} are the lengths of Archimedean spiral and the spiral defined by the differential equation, then lim_{t -> oo} L_{A}/L_{AG} = 1. In other words, the lengths of Archimedean spiral and the spiral defined by the differential equation are equivalent for large t. - Mikhail Gaichenkov, Jan 08 2013
According to Robert Bryant, the key to understanding the solutions of the ODE near the singular points is the Briot-Bouquet normal form for dealing with singular points, and, fortunately, it is just the right thing both at the origin and along the lines theta^2 - r^2 = 0. - Mikhail Gaichenkov, Feb 18 2013

Examples

			The first ten terms of this expansion are: r(t) = 0 + 1/2*t^2 - 1/32*t^4 + 1/768*t^6 - 1/49152*t^8 + 0*t^10 - 1/56623104*t^12 - 1/317893824*t^14 + 17/541165879296*t^16 + 587/175337744891904*t^18 + ...
The radius of the convergence is about 7/2.
		

Crossrefs

Denominators are listed in A202408.

Programs

  • Maple
    Order:=60: dsolve( { diff(r(t),t)^2 + r(t)^2 = t^2, r(0)=0 }, r(t), series ); # Max Alekseyev, Dec 19 2012
  • Mathematica
    km = 23; a[0] = 0; r[t_] = Sum[a[k] t^(2 k), {k, 0, km}]; coes = CoefficientList[Series[r'[t]^2 + r[t]^2 - t^2 , {t, 0, 2 km}], t] // Union // Rest; Table[a[k], {k, 0, km}] /. Solve[Thread[coes == 0] ] // Last // Most // Numerator (* Jean-François Alcover, Jan 18 2013 *)

Extensions

Corrected and extended by Max Alekseyev, Dec 19 2011