[go: up one dir, main page]

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!)
A185341 Denominators of u(n) where u(n) = (u(n-1) + u(n-2)) / u(n-3), with u(1) = u(2) = u(3) = 1. 5
1, 1, 1, 1, 1, 1, 1, 1, 5, 10, 6, 21, 77, 55, 145, 899, 868, 1988, 38411, 90347, 95357, 637807, 3506263, 2382501, 19519203, 649945741, 911672929, 3857971277, 130630182325, 366719420575, 764101349503, 12533062448579, 136235802233249 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,9
LINKS
FORMULA
u(4 - n) = u(n) for all n in Z.
0 = u(n) * u(n+3) - u(n+1) - u(n+2) for all n in Z. - Michael Somos, Nov 01 2014
EXAMPLE
u(1), ... = 1, 1, 1, 2, 3, 5, 4, 3, 7/5, 11/10, 5/6, 29/21, 155/77, 224/55, 639/145, ...
MATHEMATICA
Denominator[RecurrenceTable[{u[1] == u[2] == u[3] == 1, u[n] == (u[n - 1] + u[n - 2])/u[n - 3]}, u, {n, 50}]] (* G. C. Greubel, Jun 27 2017 *)
PROG
(PARI) {u(n) = local(v = [1, 1, 1]); if( n<1, n = 4-n); if( n<4, 1, for( k=4, n, v = [v[2], v[3], (v[2] + v[3]) / v[1]]); denominator( v[3] ))};
CROSSREFS
Sequence in context: A360560 A326724 A103697 * A067843 A245942 A280943
KEYWORD
nonn,frac
AUTHOR
Michael Somos, Jan 27 2012
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 August 29 21:13 EDT 2024. Contains 375518 sequences. (Running on oeis4.)