login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A110953
Starting a priori with the fraction 1/1, the denominators of fractions built according to the rule: add top and bottom to get the new bottom, add top and 9 times the bottom to get the new top.
0
2, 12, 40, 176, 672, 2752, 10880, 43776, 174592, 699392, 2795520, 11186176, 44736512, 178962432, 715816960, 2863333376, 11453202432, 45813071872, 183251763200, 733008101376
OFFSET
1,1
COMMENTS
The limit of the sequence of fractions used to generate this sequence is 3.
Essentially the same as A003683. - R. J. Mathar, May 25 2009
REFERENCES
Prime Obsession, John Derbyshire, Joseph Henry Press, April 2004, p. 16.
FORMULA
Given a(0)=1, b(0)=1 then for i>=1, a(i)/b(i) = (a(i-1)+ 9*b(i-1)) / (a(i-1) + b(i-1)).
PROG
(PARI) g(n, k, typ) = /* typ = 1 numerator, 2 denominator, k = multiple of denom */ { local(a, b, x, tmp); a=1; b=1; for(x=1, n, tmp=b; b=a+b; a=k*tmp+a; if(typ==1, print1(a", "), print1(b", ")) ); print(); print(a/b+.) }
CROSSREFS
Sequence in context: A074447 A190064 A240122 * A003683 A188572 A098519
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Sep 25 2005
STATUS
approved