login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

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
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...
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