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”).

A061861
First two significant digits of 1/n written in decimal.
1
10, 50, 33, 25, 20, 16, 14, 12, 11, 10, 90, 83, 76, 71, 66, 62, 58, 55, 52, 50, 47, 45, 43, 41, 40, 38, 37, 35, 34, 33, 32, 31, 30, 29, 28, 27, 27, 26, 25, 25, 24, 23, 23, 22, 22, 21, 21, 20, 20, 20, 19, 19, 18, 18, 18, 17, 17, 17, 16, 16, 16, 16, 15, 15, 15, 15, 14, 14, 14
OFFSET
1,1
COMMENTS
After 10^k terms the number of times m will have appeared will be about 10^(k+2)/(9*m*(m+1)); e.g., 10 will appear just over 10.1% of the time.
FORMULA
a(n) = floor(10^floor(2+log_10(n-1))/n).
EXAMPLE
a(32)=31 since 1/32 = 0.0312500000...
MATHEMATICA
Table[FromDigits[RealDigits[1/n, 10, 2][[1]]], {n, 70}] (* Harvey P. Dale, Jan 19 2018 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Henry Bottomley, May 11 2001
STATUS
approved