cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A340738 Denominator of a sequence of fractions converging to e.

This page as a plain text file.
%I A340738 #23 Feb 13 2021 15:07:15
%S A340738 1,2,7,18,71,252,1001,4540,18089,99990,398959,2602278,10391023,
%T A340738 78132152,312129649,2658297528,10622799089,101072656170,403978495031,
%U A340738 4247085597370,16977719590391,195445764537012,781379079653017,9775727355457908,39085931702241241,528050767520083262,2111421691000680031
%N A340738 Denominator of a sequence of fractions converging to e.
%C A340738 This sequence is a subset of the numerators of a sequence of fractions converging to e which was obtained by the use of a program which searched for a fraction having a closer value to e than the preceding one. The initial terms of this sequence were 3/1, 5/2, 8/3, 11/4, 19/7, 49/18, 68/25, 87/32, 106/39, 193/71, 685/252, 878/323, 1071/394, 1264/465, 1457/536, 2721/1001, 12341/4540. The subset of the denominators filtered out of this sequence are a(1)..a(8).
%C A340738 The convergence is conjectured.
%F A340738 a(1) = 1, a(2) = 2; for n > 2, a(n) = (n+2)*a(n-1)/2 - a(n-2) - (n-2)*a(n-3)/2 if n is even, 2*a(n-1) + n*a(n-2) otherwise.
%e A340738 Sequence of fractions begins 3/1, 5/2, 19/7, 49/18, 193/71, 685/252, 2721/1001, 12341/4540, ...
%p A340738 e:=proc(a,b,n)option remember; e(a,b,1):=a; e(a,b,2):=b; if n>2 and n mod 2 =1 then 2*e(a,b,n-1)+n*e(a,b,n-2) else if n>3 and n mod 2 = 0 then (n+2)*e(a,b,n-1)/2 -(e(a,b,n-2)+(n-2)*e(a,b,n-3)/2) fi fi end
%p A340738 seq(e(1,2,n), n = 1..20)
%p A340738 # code to print the sequence of fractions and error
%p A340738 for n from 1` to 20 do print(e(3,5,n)/e(1,2,n), evalf(exp(1)-e(3,5,n)/e(1,2,n)) od
%t A340738 a[1] = 1; a[2] = 2; a[n_] := a[n] = If[EvenQ[n], (n + 2)*a[n - 1]/2 - (a[n - 2] + (n - 2)*a[n - 3]/2), 2*a[n - 1] + n*a[n - 2]]; Array[a, 20] (* _Amiram Eldar_, Jan 18 2021 *)
%Y A340738 Numerators are listed in A340737.
%Y A340738 Cf. A007676/A007677.
%K A340738 nonn,frac
%O A340738 1,2
%A A340738 _Gary Detlefs_, Jan 18 2021