login
A071982
Parity of the decimal digits of sqrt(2).
1
1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1
OFFSET
0,1
LINKS
MATHEMATICA
Table[(1 - (-1)^Floor[10^n*Sqrt[2]])/2, {n, 0, 100}] (* G. C. Greubel, Oct 01 2018 *)
PROG
(PARI) \p200 for(n=0, 150, print1((1-(-1)^floor(10^n*sqrt(2)))/2, ", "))
(PARI) a(n)=if(n<0, 0, sqrtint(2*100^n)%2)
(Magma) [(1 - (-1)^Floor(10^n*Sqrt(2)))/2: n in [0..100]]; // G. C. Greubel, Oct 01 2018
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Benoit Cloitre, Jun 25 2002
STATUS
approved