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!)
A076843 Denominators of sequence of fractions defined by a(1) = a(2) = 1; for n > 2, a(n) = (a(n-1)+a(n-2)+1)/a(n-2). 2
1, 1, 1, 1, 1, 5, 15, 27, 261, 2059, 53321, 3826345, 599717165, 344730727333, 4379034727152233, 1299571503802595847199, 9181632264980134793594508931, 32308854341042109701936418652172579113, 67117797048843876734329361265492957492346044762131 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
EXAMPLE
1, 1, 3, 5, 3, 9/5, 29/15, 71/27, 751/261, 5095/2059, 117707/53321, ...
MAPLE
a := 1; b := 1; f := proc(n) option remember; global a, b; if n=1 then RETURN(a); fi; if n=2 then RETURN(b); fi; RETURN((f(n-1)+f(n-2)+1)/f(n-2)); end;
MATHEMATICA
Denominator[RecurrenceTable[{a[1]==a[2]==1, a[n]==(a[n-1]+a[n-2]+1)/ a[n-2]}, a, {n, 20}]] (* Harvey P. Dale, Jul 20 2014 *)
CROSSREFS
Sequence in context: A067533 A110343 A146060 * A285406 A129393 A268581
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 21 2002
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 18 17:56 EDT 2024. Contains 371781 sequences. (Running on oeis4.)