|
| |
|
|
A061480
|
|
n-th digit in decimal expansion of 1/n.
|
|
0
| |
|
|
0, 0, 3, 0, 0, 6, 1, 0, 1, 0, 0, 3, 0, 7, 6, 0, 0, 5, 0, 0, 7, 4, 0, 6, 0, 3, 7, 7, 0, 3, 0, 0, 0, 2, 7, 7, 0, 2, 5, 0, 0, 9, 0, 7, 2, 2, 0, 3, 1, 0, 9, 2, 0, 8, 8, 4, 7, 1, 0, 6, 0, 1, 5, 0, 8, 1, 0, 7, 4, 2, 0, 8, 0, 1, 3, 1, 8, 0, 0, 0, 9, 1, 0, 4, 6, 1, 1, 3, 0, 1, 0, 8, 0, 1, 2, 6, 0, 5, 0, 0
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,3
|
|
|
EXAMPLE
| a(14) = 7, as the 14-th digit in the expansion of 1/14 = 0.0714285714285714285714285714285714... is 7.
|
|
|
MATHEMATICA
| a = {}; Do[a = Append[a, Mod[ Floor[1/n * 10^n], 10] ], {n, 1, 100} ]; a
|
|
|
CROSSREFS
| Sequence in context: A062688 A067181 A145225 * A048962 A135028 A110620
Adjacent sequences: A061477 A061478 A061479 * A061481 A061482 A061483
|
|
|
KEYWORD
| nonn,base,easy
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), May 05 2001
|
|
|
EXTENSIONS
| More terms from Erich Friedman (efriedma(AT)stetson.edu), May 08 2001
|
| |
|
|