OFFSET
0,2
EXAMPLE
The continued fraction for 1/a(0)+1/a(1)+1/5 = 1+1/2+1/5 is {1, 1, 2, 3} which contains 2^2 elements. 5 is the smallest integer > 2 with this property, hence a(2)=5.
PROG
(PARI) s=1; t=1; for(n=1, 5, s=s+1/t; while(abs(2^n-length(contfrac(s+1/t)))>0, t++); print1(t, ", "))
CROSSREFS
KEYWORD
hard,nonn
AUTHOR
Benoit Cloitre, Jun 11 2002
EXTENSIONS
One more term from Michel ten Voorde Jun 13 2003
STATUS
approved