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

A139744
a(n) = 11^n - 6^n.
1
0, 5, 85, 1115, 13345, 153275, 1724905, 19207235, 212679265, 2347869995, 25876958425, 284948873555, 3136251594385, 34509651449915, 379671469419145, 4176777984431075, 45946908753664705, 505430101839849035, 5559815753535563065, 61158481088674535795
OFFSET
0,2
FORMULA
a(n) = 17*a(n-1) - 66*a(n-2). Vincenzo Librandi, Jun 02 2011
From Stefano Spezia, Dec 17 2022: (Start)
O.g.f.: 5*x/((1 - 6*x)*(1 - 11*x)).
E.g.f.: exp(6*x)*(exp(5*x) - 1). (End)
MATHEMATICA
Table[11^n-6^n, {n, 0, 30}] (* or *) LinearRecurrence[{17, -66}, {0, 5}, 30] (* Harvey P. Dale, Jul 17 2019 *)
PROG
(Magma) [11^n-6^n: n in [0..30]]; // Vincenzo Librandi, Jun 02 2011
CROSSREFS
Sequence in context: A201797 A012743 A359234 * A195156 A188918 A349936
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, May 20 2008
STATUS
approved