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

A041189 Denominators of continued fraction convergents to sqrt(105).

Original entry on oeis.org

1, 4, 81, 328, 6641, 26892, 544481, 2204816, 44640801, 180768020, 3660001201, 14820772824, 300075457681, 1215122603548, 24602527528641, 99625232718112, 2017107181890881, 8168053960281636, 165378186387523601, 669680799510376040
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A040094, A041188 (numerators), A176461.

Programs

  • Magma
    I:=[1,4,81,328]; [n le 4 select I[n] else 82*Self(n-2)-Self(n-4): n in [1..30]]; // Vincenzo Librandi, Dec 12 2013
  • Mathematica
    Denominator/@Convergents[Sqrt[105],30]  (* Harvey P. Dale, Apr 02 2011 *)
    CoefficientList[Series[(1 + 4 x - x^2)/(1 - 82 x^2 + x^4), {x, 0, 30}], x] (* Vincenzo Librandi, Dec 12 2013*)

Formula

G.f.: (1 + 4*x - x^2)/(1 - 82*x^2 + x^4). - Vincenzo Librandi, Dec 12 2013
a(n) = 82*a(n-2) - a(n-4). - Vincenzo Librandi, Dec 12 2013

Extensions

a(19) from Vincenzo Librandi, Dec 12 2013

A176460 Decimal expansion of (20+2*sqrt(105))/5.

Original entry on oeis.org

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

Views

Author

Klaus Brockhaus, Apr 20 2010

Keywords

Comments

Continued fraction expansion of (20+2*sqrt(105))/5 is A010733.

Examples

			(20+2*sqrt(105))/5 = 8.09878030638383935328...
		

Crossrefs

Cf. A176461 (decimal expansion of sqrt(105)), A010733 (repeat 8, 10).

Programs

A176535 Decimal expansion of (10 + sqrt(105))/2.

Original entry on oeis.org

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

Views

Author

Klaus Brockhaus, Apr 24 2010

Keywords

Comments

Continued fraction expansion of (10 + sqrt(105))/2 is A010733 preceded by 10.

Examples

			(10 + sqrt(105))/2 = 10.12347538297979919161...
		

Crossrefs

Cf. A176461 (decimal expansion of sqrt(105)), A010733 (repeat 8, 10).

Programs

  • Maple
    Digits:=140: evalf(10+sqrt(105))/2; # Wesley Ivan Hurt, Jan 21 2017
  • Mathematica
    RealDigits[(10+Sqrt[105])/2,10,120][[1]] (* Harvey P. Dale, Mar 13 2011 *)
Showing 1-3 of 3 results.