login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A052374
Number of occurrences of most frequent digit in decimal expansion of Pi.
1
1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 5, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13
OFFSET
0,4
LINKS
EXAMPLE
a(50)=9 because 3 appears 9 times in the first 50 digits of pi and other digits appear less frequently
MATHEMATICA
Module[{nn=90, pidg}, pidg=RealDigits[Pi, 10, nn][[1]]; Table[Max[ Transpose[ Tally[ Take[pidg, n]]][[2]]], {n, nn}]] (* Harvey P. Dale, Apr 06 2016 *)
CROSSREFS
Cf. A000796.
Sequence in context: A187185 A054896 A052364 * A003074 A279222 A276798
KEYWORD
nonn,base
AUTHOR
Henry Bottomley, Mar 08 2000
STATUS
approved