OFFSET
0,1
COMMENTS
Equals the integral over x^2/(1-x^2+x^3) dx between x=0 and x=1.
REFERENCES
George Boros and Victor H. Moll, Irresistible integrals, Cambridge University Press (2006), p. 60.
LINKS
Courtney Moen, Infinite series with binomial coefficients, Math. Mag. 64 (1) (1991) 53-55.
FORMULA
EXAMPLE
0.371216975260247034474771... = sum_{n>=1} 1/(n*A005809(n)).
MAPLE
A075778neg := proc()
1/3-root[3](25/2-3*sqrt(69)/2)/3 -root[3](25/2+3*sqrt(69)/2)/3;
end proc:
A210462 := proc()
local a075778 ;
a075778 := A075778neg() ;
(1+1/a075778/(a075778-1))/2 ;
end proc:
A210463 := proc()
local a075778, a210462 ;
a075778 := A075778neg() ;
a210462 := A210462() ;
-1/a075778-a210462^2 ;
sqrt(%) ;
end proc:
A210453 := proc()
local v, x;
v := 0.0 ;
v := v+ x*log(1-1/x)/(3*x-2) ;
end do:
evalf(v) ;
end proc:
A210453() ;
MATHEMATICA
RealDigits[ HypergeometricPFQ[{1, 1, 3/2}, {4/3, 5/3}, 4/27]/3, 10, 105] // First (* Jean-François Alcover, Feb 11 2013 *)
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
R. J. Mathar, Jan 21 2013
STATUS
approved