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.

Showing 1-2 of 2 results.

A202408 Denominator of series coefficients for Archimedes' spiral which transforms into Galileo's spiral.

Original entry on oeis.org

1, 2, 32, 768, 49152, 1, 56623104, 3170893824, 541165879296, 175337744891904, 28054039182704640, 29389945810452480, 2844006276185865584640, 147888326361665010401280, 25765432859454526256578560, 83480002464632665071314534400
Offset: 0

Views

Author

Mikhail Gaichenkov, Dec 19 2011

Keywords

Comments

Numerators are listed in A202407 which is the main entry for these sequences.

Programs

  • Mathematica
    km = 16; 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 // Denominator (* Jean-François Alcover, Jan 18 2013 *)

Extensions

Corrected and extended by Max Alekseyev, Dec 19 2011

A091154 Numerator of Maclaurin expansion of (t*sqrt(t^2+1) + arcsinh(t))/2, the arc length of Archimedes' spiral.

Original entry on oeis.org

1, 1, -1, 1, -5, 7, -21, 11, -429, 715, -2431, 4199, -29393, 52003, -185725, 334305, -3231615, 3535767, -64822395, 39803225, -883631595, 1641030105, -407771117, 11435320455, -171529806825, 107492012277, -1215486600363, 2295919134019
Offset: 1

Views

Author

Eric W. Weisstein, Dec 22 2003

Keywords

Comments

From Mikhail Gaichenkov, Feb 05 2013: (Start)
For Archimedean spiral (r=at) and the arc length s(t)= a(t*sqrt(t^2+1) + arcsinh(t))/2, the limit of s’’(t)=a, t- -> infinity. In other words, a point moves with uniform acceleration along the spiral while the spiral corresponds to the locations over time of a point moving away from a fixed point with a constant speed along a line that rotates with constant angular velocity.
The error of approximation for large t: |a-s’’(t)| ~ a/(2(1+t^2)) (Gaichenkov private research).
The arc of the Archimedean spiral is approximated by the differential equation in polar coordinates r’^2+r^2=(at)^2 (see A202407). (End)

Examples

			t + t^3/6 - t^5/40 + t^7/112 - (5*t^9)/1152 + (7*t^11)/2816 - ...
		

Crossrefs

Denominators are in A002595.
Showing 1-2 of 2 results.