OFFSET
1,1
COMMENTS
In the decimal expansion of Pi, balanced digits are much more rare than weak or strong ones.
EXAMPLE
In the decimal expansion of Pi: 3,1,4,1,5,9,2,6,5,3,5,8,9,7,9,3,2,3,8,4,6,2, the first two strong digits are 4 and 9 because 4>(1+1)/2 and 9>(5+2)/2.
MATHEMATICA
re=RealDigits[N[Pi, 300]][[1]]; b={}; Do[r=re[[n]]; If[r>(re[[n-1]]+re[[n+1]])/2, b=Append[b, r]], {n, 2, 299}]; A108533=b
sdQ[{a_, b_, c_}]:=b>Mean[{a, c}]; Transpose[Select[Partition[RealDigits[ Pi, 10, 300][[1]], 3, 1], sdQ]][[2]] (* Harvey P. Dale, Nov 12 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Zak Seidov, Jun 08 2005
STATUS
approved