OFFSET
1,2
COMMENTS
This constant is c(2), where
c(k) = Sum_{n>=0} 1/binomial(2n+k,n) = HypergeometricPFQ((1,1,k+1), ((k+1)/2, (k+2)/2), 1/4).
c(0) = 2*(18 + sqrt(3)*Pi)/27, as in A091682.
c(1) = 2*(9 + 2*sqrt(3)*Pi)/27, as in A248179.
c(2) = (9 + 5*sqrt(3)*Pi)/27, as in this sequence.
c(3) = (45 - 2*sqrt(3)*Pi)/27.
For k>=4, does c(k) have a representation of the form shown here for k = 0..3?
EXAMPLE
1.340999646796787694774487920912308740157814582...
MATHEMATICA
s[k_] := Sum[1/Binomial[2 n + k, n], {n, 0, Infinity}];
Column[Table[{s[k], N[s[k], 20]}, {k, 0, 10}]]
PROG
(PARI) (9+5*sqrt(3)*Pi)/27 \\ Charles R Greathouse IV, May 19 2026
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Oct 30 2025
STATUS
approved
