OFFSET
3,1
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 numerator 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(numerator(a[j])", ") ) }
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Cino Hilliard, Jun 24 2004
STATUS
approved