OFFSET
1,5
COMMENTS
For x real <> 1 - 1/log(2), Lim_{n -> infinity} abs(u(n) - n) = abs((x - 1)/(1 + (x - 1)*log(2))). [Corrected by Petros Hadjicostas, May 18 2020]
Difference between the denominator and the numerator of the (n-1)-th alternating harmonic number Sum_{k=1..n-1} (-1)^(k+1)*1/k = A058313(n-1)/A058312(n-1). - Alexander Adamchuk, Jul 22 2006
From Petros Hadjicostas, May 06 2020: (Start)
Inspired by Michael Somos's result below, we established the following formulas (valid for n >= 2). All the denominators in the first three formulas are equal to A334958(n).
b(n) + c(n) = n*(d(n) + a(n)).
LINKS
Petros Hadjicostas, Proofs of various results about the sequence u(n), 2020.
FORMULA
From Alexander Adamchuk, Jul 22 2006: (Start)
a(n) = denominator(Sum_{k=1..n-1} (-1)^(k+1)*1/k) - numerator(Sum_{k=1..n-1}(-1)^(k+1)*1/k). (End)
MATHEMATICA
Denominator[Table[Sum[(-1)^(k+1)*1/k, {k, 1, n-1}], {n, 1, 30}]]-Numerator[Table[Sum[(-1)^(k+1)*1/k, {k, 1, n-1}], {n, 1, 30}]] (* Alexander Adamchuk, Jul 22 2006 *)
PROG
(PARI) u(n) = if(n<2, x, (n-1)^2/u(n-1)+1);
a(n) = polcoeff(denominator(u(n)), 0, x);
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Oct 14 2002
EXTENSIONS
Name edited by Petros Hadjicostas, May 06 2020
STATUS
approved