login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A322647 Number of times the digit 6 appears in the first 10^n decimal digits of sqrt(2), sometimes called Pythagoras's constant, counting after the decimal point. 10

%I #12 Oct 02 2022 14:01:24

%S 1,10,90,1032,9939,99886,1001246,10001665,100012683,1000007824

%N Number of times the digit 6 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]="6" then C:=C+1; fi;

%p od;

%p return(C);

%p end;

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

%t Table[Count[RealDigits[Sqrt[2],10,10^n][[1]],6],{n,10}] (* _Harvey P. Dale_, Oct 02 2022 *)

%Y Cf. A002193, A099297, A322641, A322642, A322643, A322644, A322645, A322646, A322648, A322649, A322650.

%K nonn,base,more

%O 1,2

%A _Martin Renner_, Dec 21 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 12:53 EDT 2024. Contains 371780 sequences. (Running on oeis4.)