OFFSET
0,2
COMMENTS
See A190404.
LINKS
Danny Rorabaugh, Table of n, a(n) for n = 0..10000
FORMULA
Equals Sum_{k>=1} (1/2)^V(k), where V=A058331 (1+2*k^2).
EXAMPLE
0.12695503246504857842...
MATHEMATICA
(* See also A190404 *)
RealDigits[(EllipticTheta[3, 0, 1/4]-1)/4, 10, 120] // First (* Jean-François Alcover, Feb 13 2013 *)
PROG
(Sage)
def A190407(b): # Generate the constant with b bits of precision
return N(sum([(1/2)^(2*k^2+1) for k in range(1, b)]), b)
A190407(415) # Danny Rorabaugh, Mar 26 2015
(PARI) th3(x)=1 + 2*suminf(n=1, x^n^2)
(th3(1/4)-1)/4 \\ Charles R Greathouse IV, Jun 06 2016
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, May 10 2011
STATUS
approved