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

A066559
a(n) = ceiling(10^(n-1)/n).
2
1, 5, 34, 250, 2000, 16667, 142858, 1250000, 11111112, 100000000, 909090910, 8333333334, 76923076924, 714285714286, 6666666666667, 62500000000000, 588235294117648, 5555555555555556, 52631578947368422, 500000000000000000
OFFSET
1,2
LINKS
FORMULA
a(n) = A053041(n)/n.
MAPLE
A066559:=n->ceil(10^(n-1)/n); seq(A066559(n), n=1..30); # Wesley Ivan Hurt, Nov 28 2013
MATHEMATICA
Table[Ceiling[10^(n - 1)/n], {n, 30}] (* Wesley Ivan Hurt, Nov 28 2013 *)
PROG
(PARI) a(n) = { ceil(10^(n-1)/n) } \\ Harry J. Smith, Feb 23 2010
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Dec 17 2001
EXTENSIONS
Corrected, extended by, and better name from Vladeta Jovovic, Dec 17 2001
STATUS
approved