A060156 a(n) = floor(10^n/n).
10, 50, 333, 2500, 20000, 166666, 1428571, 12500000, 111111111, 1000000000, 9090909090, 83333333333, 769230769230, 7142857142857, 66666666666666, 625000000000000
Offset: 1
Keywords
Examples
a(6) = floor(1000000/6) = 166666.
Links
- Harry J. Smith, Table of n, a(n) for n = 1..200
Programs
-
PARI
{ default(realprecision, 10); for (n=1, 200, write("b060156.txt", n, " ", floor(10^n/n)); ) } \\ Harry J. Smith, Jul 02 2009