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

A021907
Decimal expansion of 1/903.
0
0, 0, 1, 1, 0, 7, 4, 1, 9, 7, 1, 2, 0, 7, 0, 8, 7, 4, 8, 6, 1, 5, 7, 2, 5, 3, 5, 9, 9, 1, 1, 4, 0, 6, 4, 2, 3, 0, 3, 4, 3, 3, 0, 0, 1, 1, 0, 7, 4, 1, 9, 7, 1, 2, 0, 7, 0, 8, 7, 4, 8, 6, 1, 5, 7, 2, 5, 3, 5, 9, 9, 1, 1, 4, 0, 6, 4, 2, 3, 0, 3, 4, 3, 3, 0, 0, 1, 1, 0, 7, 4, 1, 9, 7, 1, 2, 0, 7, 0
OFFSET
0,6
MATHEMATICA
RealDigits[1/903, 10, 105, -1][[1]] (* Metin Sariyar, Sep 26 2019 *)
PROG
(Python)
b = 10
while 1:
n = int(b/903)
print(n)
b = (b%903)*10
# Payton A. Doud, Sep 25 2019
CROSSREFS
Sequence in context: A059630 A258330 A011407 * A168422 A187056 A103240
KEYWORD
nonn,cons
AUTHOR
STATUS
approved