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

A199025
(7*11^n-1)/2.
1
3, 38, 423, 4658, 51243, 563678, 6200463, 68205098, 750256083, 8252816918, 90780986103, 998590847138, 10984499318523, 120829492503758, 1329124417541343, 14620368592954778, 160824054522502563, 1769064599747528198
OFFSET
0,1
FORMULA
a(n) = 11*a(n-1)+5.
a(n) = 12*a(n-1)-11*a(n-2), n>1.
G.f.: (3 + 2*x)/(1 - 12*x + 11*x^2). - Vincenzo Librandi, Jan 04 2013
MATHEMATICA
CoefficientList[Series[(3 + 2*x)/(1 - 12*x + 11*x^2), {x, 0, 30}], x] (* Vincenzo Librandi, Jan 04 2013 *)
LinearRecurrence[{12, -11}, {3, 38}, 30] (* Harvey P. Dale, Dec 12 2020 *)
PROG
(Magma) [(7*11^n-1)/2 : n in [0..20]]
CROSSREFS
Sequence in context: A050394 A281798 A156071 * A265914 A005780 A033678
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 02 2011
STATUS
approved