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!)
A128531 a(n) = numerator of r(n): r(n) is such that the continued fraction (of rational terms) [r(1);r(2),...r(n)] equals the n-th Fibonacci number, for every positive integer n. 3
1, 1, -2, 3, -10, 6, -65, 378, -5525, 16632, -1278485, 25147584, -1012815817, 8022079296, -2114837334805, 570081043090944, -60533314393713485, 1256458618972440576, -4540728540084435567025, 1677888660820605842036736, -466914087740138106185288665 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
For n>=4, r(n) = -F(n)/(F(n-3) r(n-1)), where F(n) is the n-th Fibonacci number.
EXAMPLE
The 5th Fibonacci number = 5 = 1 +1/(1 +1/(-2 +1/(3/2 -3/10))).
The 6th Fibonacci number = 8 = 1 +1/(1 +1/(-2 +1/(3/2 +1/(-10/3 +5/6)))).
MAPLE
L2cfrac := proc(L, targ) local a, i; a := targ ; for i from 1 to nops(L) do a := 1/(a-op(i, L)) ; od: end: A128531 := proc(nmax) local b, n, bnxt; b := [1] ; for n from nops(b)+1 to nmax do bnxt := L2cfrac(b, combinat[fibonacci](n+1)) ; b := [op(b), bnxt] ; od: [seq( numer(b[i]), i=1..nops(b))] ; end: A128531(22) ; # R. J. Mathar, Oct 09 2007
CROSSREFS
Cf. A128532.
Sequence in context: A343936 A336091 A347835 * A123167 A333176 A338043
KEYWORD
frac,sign
AUTHOR
Leroy Quet, Mar 08 2007
EXTENSIONS
More terms from R. J. Mathar, Oct 09 2007
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)