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!)
A096285 Denominator of the ratio of the preceding two terms. 1
1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 2, 2, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,3
COMMENTS
The actual repeating sequence is 2,1,1/2,1/2,1,2,2,1,1/2,1/2,1,2...
LINKS
FORMULA
Let a(1) = 1, a(2) = 2 then a(n) = a(n-2)/a(n-1) for n = 3, 4, 5... The sequence only posts the denominator of a(n).
PROG
(PARI) fibdiv(n) = { a = vector(1000); a[1] = 1; a[2] = 2; for(j=3, n, a[j] = a[j-1]/a[j-2]; print1(denominator(a[j])", ") ) }
CROSSREFS
Sequence in context: A328615 A128016 A128017 * A328483 A321856 A175078
KEYWORD
nonn,frac
AUTHOR
Cino Hilliard, Jun 24 2004
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 20 02:14 EDT 2024. Contains 371798 sequences. (Running on oeis4.)