OFFSET
0,1
COMMENTS
See A190404.
LINKS
Danny Rorabaugh, Table of n, a(n) for n = 0..10000
FORMULA
a(n) = floor(10^(n+1)*Sum_{j>=0} (1/2)^(2*j*(j+1)+1)) mod 10. - Danny Rorabaugh, Mar 26 2015
MAPLE
evalf(JacobiTheta2(0, 1/4)/2^(3/2)) ; # R. J. Mathar, Jul 15 2013
MATHEMATICA
(See A190404.)
(* or *) RealDigits[EllipticTheta[2, 0, 1/4]/(2*Sqrt[2]), 10, 120] // First (* Jean-François Alcover, Feb 12 2013 *)
PROG
(Sage)
def A190406(b): # Generate the constant with b bits of precision
return N(sum([(1/2)^(2*j*(j+1)+1) for j in range(0, b)]), b)
A190406(409) # Danny Rorabaugh, Mar 26 2015
(PARI) th2(x)=x^.25 + 2*suminf(n=1, x^(n+1/2)^2)
th2(1/4)/sqrt(8) \\ Charles R Greathouse IV, Jun 06 2016
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, May 10 2011
STATUS
approved