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”).
%I #9 Mar 30 2012 18:39:16
%S 0,1,7,135,35445,44465908998,5112887721516309845621,
%T 75234509360529020708450352828794956245887456,
%U 5786575206590910267083400178061771765781639734324927167565054640197289842752623499343753
%N Continued cotangent for tanh(1).
%D D. H. Lehmer, A cotangent analogue of continued fractions, Duke Math. J., 4 (1935), 323-340.
%F tanh(1)=cot(sum(n>=0, n, (-1)^n*acot(a(n))); let b(0)=tanh(1), b(n)=(b(n-1)*floor(b(n-1))+1)/(b(n-1)-floor(b(n-1)) then a(n)=floor(b(n))
%o (PARI) ?bn=vector(100); b(n)=if(n<0,0,bn[n]); bn[1]=tanh(1); ?for(n=2,10,bn[n]=(b(n-1)*floor(b(n-1))+1)/(b(n-1)-floor(b(n-1)))) ?a(n)=floor(b(n+1))
%Y Cf. A002666, A002667, A002668.
%K nonn
%O 0,3
%A _Benoit Cloitre_, Apr 10 2003