OFFSET
0,1
COMMENTS
This number is obviously 2-dense, but not 2-normal: any finite binary string s representing the value N will appear in its digits, not later than those added by the term N/2^(N^2), but nonzero digits have density zero since the gap between those added by subsequent terms is increasing much faster (~ n) than the maximal possible number of new nonzero digits (~ log_2(n)). - M. F. Hasler, Mar 22 2017
LINKS
David H. Bailey and Richard E. Crandall, Random Generators and Normal Numbers, page 27.
EXAMPLE
0.6309205592551858647783240039079433700921514299217879868...
MATHEMATICA
RealDigits[N[Sum[n/(2^(n^2)), {n, 4!}], 100]][[1]] (* Arkadiusz Wesolowski, Sep 29 2011 *)
PROG
(PARI) default(realprecision, 100); sum(n=1, 100, n/(2^(n^2)), 0.) \\ Typo corrected. sum(n=1, 100, n*1.>>(n^2)) is 25 x faster for 1000 digits. - M. F. Hasler, Mar 22 2017
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Mark Hudson (mrmarkhudson(AT)hotmail.com), Nov 11 2004
EXTENSIONS
Offset corrected by Arkadiusz Wesolowski, Sep 29 2011
STATUS
approved