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

A199679
(11*9^n+1)/4.
1
3, 25, 223, 2005, 18043, 162385, 1461463, 13153165, 118378483, 1065406345, 9588657103, 86297913925, 776681225323, 6990131027905, 62911179251143, 566200613260285, 5095805519342563, 45862249674083065, 412760247066747583
OFFSET
0,1
FORMULA
a(n) = 9*a(n-1)-2.
a(n) = 10*a(n-1)-9*a(n-2).
G.f.: (3-5*x)/((1-x)*(1-9*x)).
MATHEMATICA
(11 9^Range[0, 20]+1)/4 (* or *) LinearRecurrence[{10, -9}, {3, 25}, 20] (* Harvey P. Dale, Apr 29 2019 *)
PROG
(Magma) [(11*9^n+1)/4: n in [0..30]];
CROSSREFS
Sequence in context: A155640 A370104 A024217 * A118726 A372458 A066221
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 09 2011
STATUS
approved