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

A199759
8*11^n+1.
1
9, 89, 969, 10649, 117129, 1288409, 14172489, 155897369, 1714871049, 18863581529, 207499396809, 2282493364889, 25107427013769, 276181697151449, 3037998668665929, 33417985355325209, 367597838908577289, 4043576227994350169
OFFSET
0,1
FORMULA
a(n) = 11*a(n-1)-10.
a(n) = 12*a(n-1)-11*a(n-2).
G.f.: (9-19*x)/((1-x)*(1-11*x)).
MATHEMATICA
8*11^Range[0, 20]+1 (* or *) LinearRecurrence[{12, -11}, {9, 89}, 20] (* Harvey P. Dale, Jun 10 2022 *)
PROG
(Magma) [8*11^n+1: n in [0..30]];
CROSSREFS
Sequence in context: A152267 A082147 A095722 * A069573 A101679 A075507
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 10 2011
STATUS
approved