login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Number of times the digit 0 appears in the first 10^n decimal digits of sqrt(2), sometimes called Pythagoras's constant, counting after the decimal point.
10

%I #15 Mar 29 2019 21:07:09

%S 0,10,108,952,9959,99814,999897,10002237,100010228,999996989

%N Number of times the digit 0 appears in the first 10^n decimal digits of sqrt(2), sometimes called Pythagoras's constant, counting after the decimal point.

%C It is not known if sqrt(2) is normal, but the distribution of decimal digits found for the first 10^n digits of sqrt(2) shows no statistically significant departure from a uniform distribution.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/PythagorassConstantDigits.html">Pythagoras's Constant Digits</a>.

%p a:=proc(n)

%p local digits, SQRT2, C, i;

%p digits:=10^n+100;

%p SQRT2:=convert(frac(evalf[digits](sqrt(2))),string)[2..digits-99];

%p C:=0;

%p for i from 1 to length(SQRT2) do

%p if SQRT2[i]="0" then C:=C+1; fi;

%p od;

%p return(C);

%p end;

%t Table[DigitCount[IntegerPart[(Sqrt[2]-1)*10^10^n], 10, 0], {n,1,10}] (* _Robert Price_, Mar 29 2019 *)

%Y Cf. A002193, A099291, A322642, A322643, A322644, A322645, A322646, A322647, A322648, A322649, A322650.

%K nonn,base,more

%O 1,2

%A _Martin Renner_, Dec 21 2018