login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A266807 Coefficient of x^3 in the minimal polynomial of the continued fraction [1^n,sqrt(6),1,1,...], where 1^n means n ones. 5
2, -90, -166, -2166, -12010, -89598, -594910, -4127706, -28160326, -193357590, -1324392298, -9079876830, -62228230846, -426534794586, -2923470679270, -20037876860598, -137341361295850, -941352453457086, -6452123715212446, -44223519044857050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
See A265762 for a guide to related sequences.
LINKS
FORMULA
a(n) = 5*a(n-1) + 15*a(n-2) - 15*a(n-3) - 5*a(n-4) + a(n-5) .
G.f.: (2 (-1 + 50 x - 127 x^2 - 22 x^3 + 15 x^4))/(-1 + 5 x + 15 x^2 - 15 x^3 - 5 x^4 + x^5).
EXAMPLE
Let p(n,x) be the minimal polynomial of the number given by the n-th continued fraction:
[sqrt(6),1,1,1,...] has p(0,x)=19-14x-13x^2+2x^3+x^4, so a(0) = 2;
[1,sqrt(6),1,1,1,...] has p(1,x)=19-90x+143x^2-90x^3+19x^4, so a(1) = -90;
[1,1,sqrt(6),1,1,1...] has p(2,x)=361-722x+527x^2-166x^3+19x^4, so a(2) = -166. ~
MATHEMATICA
u[n_] := Table[1, {k, 1, n}]; t[n_] := Join[u[n], {Sqrt[6]}, {{1}}];
f[n_] := FromContinuedFraction[t[n]];
t = Table[MinimalPolynomial[f[n], x], {n, 0, 40}];
Coefficient[t, x, 0] ; (* A266804 *)
Coefficient[t, x, 1]; (* A266805 *)
Coefficient[t, x, 2]; (* A266806 *)
Coefficient[t, x, 3]; (* A266807 *)
Coefficient[t, x, 4]; (* A266804 *)
CROSSREFS
Sequence in context: A309994 A339581 A256962 * A355574 A076532 A212301
KEYWORD
sign,easy
AUTHOR
Clark Kimberling, Jan 10 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 23:40 EDT 2024. Contains 371798 sequences. (Running on oeis4.)