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

A024117
a(n) = 10^n - n^3.
2
1, 9, 92, 973, 9936, 99875, 999784, 9999657, 99999488, 999999271, 9999999000, 99999998669, 999999998272, 9999999997803, 99999999997256, 999999999996625, 9999999999995904, 99999999999995087, 999999999999994168, 9999999999999993141, 99999999999999992000
OFFSET
0,2
FORMULA
From Colin Barker, Oct 05 2018: (Start)
G.f.: (1 - 5*x + 12*x^2 + 35*x^3 + 11*x^4) / ((1 - x)^4*(1 - 10*x)).
a(n) = 14*a(n-1) - 46*a(n-2) + 64*a(n-3) - 41*a(n-4) + 10*a(n-5) for n>4.
(End)
PROG
(Magma) [10^n-n^3: n in [0..20]]; // Vincenzo Librandi, Jun 30 2011
(PARI) Vec((1 - 5*x + 12*x^2 + 35*x^3 + 11*x^4) / ((1 - x)^4*(1 - 10*x)) + O(x^30)) \\ Colin Barker, Oct 05 2018
CROSSREFS
Sequence in context: A164913 A007403 A015587 * A261855 A076456 A297580
KEYWORD
nonn,easy
STATUS
approved