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-5 of 5 results.

A191642 Kochański's (or Kochanski's) sequence.

Original entry on oeis.org

15, 4697, 5548, 14774, 33696, 61072, 111231, 115985, 173819, 563316, 606004, 1751458, 1952544, 3046715, 4397195, 45051907, 653475595, 734915444, 1241384578, 2438767174, 2557084119, 5090226634, 6088149715, 18483120028, 44254634530, 48502484589, 70835215004
Offset: 1

Views

Author

Henryk Fuks, Jun 09 2011

Keywords

Comments

The sequence of "genitores" used to generate approximants of Pi.

References

  • A. A. Kochański, Observationes cyclometricae ad facilitandam praxin accomodatae, Acta Eruditorum 4 (1685) 394-398.

Crossrefs

Programs

  • Maple
    Digits := 100;
    alpha:=Pi;
    a:= floor(alpha);
    g:=(R,S)->floor( (alpha-a)/(R-alpha*S));
    S[1]:=floor(1/(alpha-a));
    R[1]:=1+a*S[1];
    for n from 2 to 10 do
    S[n] := S[n-1]*(g(R[n-1], S[n-1])+1)+1:
    R[n] := R[n-1]*(g(R[n-1], S[n-1])+1)+a:
    end do:
    seq(g(R[i], S[i]), i = 1 .. 10);
  • Mathematica
    g[x_, y_] = Floor[N[(Pi - 3)/(x - Pi*y), 200]];
    R = 22; S = 7;
    Reap[For[i = 1, i <= 27, i++, b = g[R, S]; S = S*(b+1)+1; R = R*(b+1)+3; Print[b]; Sow[b]]][[2, 1]]; (* Jean-François Alcover, Feb 21 2019, from PARI *)
  • PARI
    default(realprecision, 1000);
    g(x,y)=floor( (Pi-3)/(x-Pi*y))
    R=22; S=7; for(i=1,35, b=g(R,S); S=S*(b+1)+1; R=R*(b+1)+3; print1(b,", "))

Extensions

I added the unaccented version of the name to the definition, to make it easier to search for. - N. J. A. Sloane, Jan 12 2012

A199658 Denominators of lower rational approximants of Pi with the first 5 terms given by Adam Adamandy Kochański in 1685, continued using a reconstruction by Fukś that is highly likely to match Kochański's incompletely published method.

Original entry on oeis.org

8, 106, 530762, 2945294501, 43521624105025, 1466603908374792097, 89571092024800092397857, 9963245273671152951934207006, 1155597392139966274078899403965586, 200866514921276434616104042029044754594, 113151972691506812691685713772827327500605957, 68570669785555705551463950663318228291679702401993
Offset: 1

Views

Author

Jonathan Vos Post, Nov 08 2011

Keywords

Comments

The corresponding numerators are given in A199657.
See A199657 for more information and references.

Examples

			a(1) = 8 because Kochański's first lower bound was 25/8 = A199657(1)/a(1) and his first upper bound was 22/7 = A199671(1)/A199672(1).
a(2) = S(1) * A191642(1) + 1 = 7*15 + 1 = 105 + 1 = 106,
S(2) = S(1) * (A191642(1) + 1 ) + 1 = 7*(15 + 1) + 1 = 113 = A199672(2).
		

Crossrefs

Formula

a(1) = 8; S(1) = A199672(1) = 7;
a(n) = S(n-1)*A191642(n-1) + 1, where A191642 are Kochański's "genitores";
S(n) = S(n-1)*(A191642(n-1) + 1) + 1;

Extensions

More terms from Hugo Pfoertner, Mar 07 2020

A199671 Numerators of upper rational approximants of Pi with the first 5 terms given by Adam Adamandy Kochański in 1685, continued using a reconstruction by Fukś that is highly likely to match Kochański's incompletely published method.

Original entry on oeis.org

22, 355, 1667793, 9254583360, 136736469144003, 4607608800745469094, 281400492287928033977865, 31300739558170811075425879683, 3630447578393999693394346080912441, 631044398076445026705805235784200494623, 355478037191228783108834088006248470029544494, 215421467928070598707869001502226604080254111086473
Offset: 1

Views

Author

Jonathan Vos Post, Nov 08 2011

Keywords

Comments

The corresponding denominators are given in A199672.
See A199657 for more information and references.

Examples

			a(1) = 22 because Kochański's first lower bound was 25/8 = A199657/A199658(1) and his first upper bound was 22/7 = a(1)/A199672(1).
a(2) = a(1) * (A191642(1) + 1) + 3 = 22*(15 + 1) + 3 = 352 + 3 = 355,
a(3) = a(2) * (A191642(2) + 1) + 3 = 355*(4697 + 1) + 3 = 1667793,
a(4) = a(3) * (A191642(3) + 1) + 3 = 1667793*(5548 + 1) + 3 = 9254583360.
		

Crossrefs

Programs

  • Mathematica
    g[x_, y_] = Floor[N[(Pi - 3)/(x - Pi*y), 200]];
    R = 22; S = 7;
    Reap[Print[R]; Sow[R]; For[i = 1, i <= 4, i++, b = g[R, S]; S = S*(b+1)+1; R = R*(b+1)+3; Print[R]; Sow[R]]][[2, 1]] (* Jean-François Alcover, Feb 21 2019 *)

Formula

a(1) = 22;
a(n) = a(n-1)*(A191642(n-1) + 1) + 3, where A191642 are Kochański's "genitores".

Extensions

More terms from Hugo Pfoertner, Mar 07 2020

A199672 Denominators of upper rational approximants of Pi with the first 5 terms given by Adam Adamandy Kochański in 1685, continued using a reconstruction by Fukś that is highly likely to match Kochański's incompletely published method.

Original entry on oeis.org

7, 113, 530875, 2945825376, 43524569930401, 1466647432944722498, 89572558672233037120355, 9963334846229825184971327361, 1155607355474812503904084375292947, 200867670528631909428607946113420047541, 113152173559177341323595142380773440920653498, 68570782937729264728805274258460609065120623055491
Offset: 1

Views

Author

Jonathan Vos Post, Nov 08 2011

Keywords

Comments

The corresponding numerators are given in A199671.
See A199657 for more information and references.

Examples

			a(1) = 7 because Kochański's first lower bound was 25/8 = A199657(1)/A199658(1) and his first upper bound was 22/7 = A199671(1)/a(1).
a(2) = a(1) * (A191642(1) + 1) + 1 = 7*(15 + 1) + 1 = 112 + 1 = 113,
a(3) = a(2) * (A191642(2) + 1) + 1 = 113*(4697 + 1) + 1 = 530875,
a(4) = a(3) * (A191642(3) + 1) + 1 = 530875*(5548 + 1) + 1 = 2945825376.
		

Crossrefs

Cf. A191642, A199657, A199658, A199671 (numerators).

Formula

a(1) = 7;
a(n) = a(n-1)*(A191642(n-1) + 1) + 1, where A191642 are Kochański's "genitores".

Extensions

More terms from Hugo Pfoertner, Mar 07 2020

A221185 Decimal expansion of sqrt(120-18*sqrt(3))/3.

Original entry on oeis.org

3, 1, 4, 1, 5, 3, 3, 3, 3, 8, 7, 0, 5, 0, 9, 4, 6, 1, 8, 6, 3, 6, 3, 9, 8, 2, 2, 1, 9, 6, 4, 6, 2, 4, 0, 7, 1, 1, 9, 9, 1, 2, 4, 1, 7, 9, 2, 1, 3, 3, 6, 3, 2, 6, 4, 2, 4, 2, 9, 4, 0, 2, 1, 3, 5, 9, 2, 0, 5, 0, 8, 9, 0, 0, 7, 4, 0, 5, 8, 4, 0, 4, 5, 1, 5, 1, 0, 1, 0, 0, 8, 9, 6, 3, 0, 5, 8, 4, 7, 5, 8, 4, 0, 7, 2, 1, 6, 7, 9, 5, 7, 0, 9, 7, 8, 9, 3, 1, 9, 7, 7
Offset: 1

Views

Author

N. J. A. Sloane, Jan 23 2013

Keywords

Comments

An approximation for Pi, obtained by a geometrical construction by Kochański (1685). - Amiram Eldar, Sep 12 2022

Examples

			3.1415333387050946186363982219646240711991241792133632642429...
		

References

  • Benjamin Bold, Famous Problems of Geometry and How to Solve Them, New York: Dover, 1982, p. 44.
  • J. L. Heilbron, Geometry Civilized: History, Culture, and Technique, Oxford University Press, 2000, pp. 250-252.
  • Hugo Steinhaus, Mathematical Snapshots, 3rd ed., New York: Dover, 1999, p. 143.

Crossrefs

Programs

Showing 1-5 of 5 results.