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

A024120
a(n) = 10^n - n^6.
2
1, 9, 36, 271, 5904, 84375, 953344, 9882351, 99737856, 999468559, 9999000000, 99998228439, 999997014016, 9999995173191, 99999992470464, 999999988609375, 9999999983222784, 99999999975862431, 999999999965987776
OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (17,-91,245,-385,371,-217,71,-10)
FORMULA
G.f.: ( 1 - 8*x - 26*x^2 + 233*x^3 + 2753*x^4 + 2942*x^5 + 576*x^6 + 9*x^7 ) / ( (10*x-1)*(x-1)^7 ). - R. J. Mathar, Jun 30 2011
MATHEMATICA
Table[10^n-n^6, {n, 0, 30}] (* or *) LinearRecurrence[ {17, -91, 245, -385, 371, -217, 71, -10}, {1, 9, 36, 271, 5904, 84375, 953344, 9882351}, 30] (* Harvey P. Dale, Oct 09 2012 *)
PROG
(Magma) [10^n-n^6: n in [0..20]]; // Vincenzo Librandi, Jun 30 2011
(PARI) a(n) = 10^n-n^6; \\ Altug Alkan, Oct 04 2018
CROSSREFS
Cf. A001014 (n^6), A011557 (10^n).
Sequence in context: A036907 A027381 A335783 * A262782 A204513 A223306
KEYWORD
nonn,easy
STATUS
approved