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

A165759
a(n) = (7-4*7^n)/3.
3
1, -7, -63, -455, -3199, -22407, -156863, -1098055, -7686399, -53804807, -376633663, -2636435655, -18455049599, -129185347207, -904297430463, -6330082013255, -44310574092799, -310174018649607, -2171218130547263, -15198526913830855, -106389688396815999
OFFSET
0,2
FORMULA
a(n) = 7*a(n-1)-14, a(0)=1.
a(n) = 8*a(n-1) - 7*a(n-2), a(0)= 1, a(1)= -7, for n>1.
G.f.: (1-15x)/(1-8x+7x^2).
a(n) = Sum_{0<=k<=n} A112555(n,k)*(-8)^(n-k).
E.g.f.: (1/3)*(7*exp(x) - 4*exp(7*x)). - G. C. Greubel, Apr 07 2016
MATHEMATICA
(7-4*7^Range[0, 20])/3 (* or *) LinearRecurrence[{8, -7}, {1, -7}, 30] (* Harvey P. Dale, Dec 21 2014 *)
CROSSREFS
Sequence in context: A055405 A100741 A043027 * A166153 A123009 A219058
KEYWORD
easy,sign
AUTHOR
Philippe Deléham, Sep 26 2009
EXTENSIONS
Corrected and extended by Harvey P. Dale, Dec 21 2014
STATUS
approved