A225164 Denominators of the sequence s(n) of the sum resp. product of fractions f(n) defined recursively by f(1) = 5/1; f(n+1) is chosen so that the sum and the product of the first n terms of the sequence are equal.
1, 4, 84, 45444, 15686405364, 2147492192737717340004, 45388476229808808857318702720533556450342484
Offset: 1
Keywords
Examples
f(n) = 5, 5/4, 25/21, 625/541, ... 5 + 5/4 = 5 * 5/4 = 25/4; 5 + 5/4 + 25/21 = 5 * 5/4 * 25/21 = 625/84; ... s(n) = 1/b(n) = 5, 25/4, 625/84, ...
Programs
-
Maple
b:=proc(n) option remember; b(n-1)-b(n-1)^2; end: b(1):=1/5; a:=n->5^(2^(n-1))*b(n); seq(a(i),i=1..8);
Formula
a(n) = 5^(2^(n-1))*b(n) where b(n)=b(n-1)-b(n-1)^2 with b(1)=1/5.
Comments