OFFSET
0,1
LINKS
Steven R. Finch, Errata and Addenda to Mathematical Constants, p. 38.
A. Knopfmacher and H. Prodinger, On Carlitz compositions, European Journal of Combinatorics, Vol. 19, 1998, pp. 579-589.
FORMULA
Sigma is the unique solution of the equation F(x)=1, 0 <= x <= 1, where F(x) = sum_{j>=1} (-1)^(j - 1)*(x^j/(1 - x^j)).
a(n) ~ 1/(sigma*F'(sigma))*(1/sigma)^n = c*r^n, where c = 0.456387... and r = A241902 = 1.750243...
EXAMPLE
0.571349793158087643112217904891974600336176224937534145...
MATHEMATICA
digits = 103; F[x_?NumericQ] := NSum[(-1)^(j - 1)*(x^j/(1 - x^j)), {j, 1, Infinity}, WorkingPrecision -> digits+5]; sigma = x /. FindRoot[F[x] == 1, {x, 2/5, 1/2}, WorkingPrecision -> digits+5]; RealDigits[sigma, 10, digits] // First
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Jean-François Alcover, Sep 08 2014
STATUS
approved