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

A060156
a(n) = floor(10^n/n).
4
10, 50, 333, 2500, 20000, 166666, 1428571, 12500000, 111111111, 1000000000, 9090909090, 83333333333, 769230769230, 7142857142857, 66666666666666, 625000000000000
OFFSET
1,1
LINKS
FORMULA
a(n) = (A011557(n) - A056969(n))/n.
EXAMPLE
a(6) = floor(1000000/6) = 166666.
PROG
(PARI) { default(realprecision, 10); for (n=1, 200, write("b060156.txt", n, " ", floor(10^n/n)); ) } \\ Harry J. Smith, Jul 02 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, Mar 12 2001
STATUS
approved