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

A085287
Expansion of g.f. (1+4*x)/((1-x)*(1+x)*(1-3*x)).
2
1, 7, 22, 70, 211, 637, 1912, 5740, 17221, 51667, 155002, 465010, 1395031, 4185097, 12555292, 37665880, 112997641, 338992927, 1016978782, 3050936350, 9152809051, 27458427157, 82375281472, 247125844420, 741377533261, 2224132599787, 6672397799362, 20017193398090
OFFSET
0,2
COMMENTS
Binomial transform of A084431.
FORMULA
a(n) = (-10 - 3(-1)^n + 21*3^n)/8.
a(n) = 2*a(n-1) + 3*a(n-2) + 5, a(0)=0, a(1)=1. - Zerinvary Lajos, Dec 14 2008
From Stefano Spezia, Sep 20 2023: (Start)
a(n) = 3*a(n-1) + a(n-2) - 3*a(n-3) for n > 2.
E.g.f.: exp(x)*(9*cosh(2*x) + 12*sinh(2*x) - 5)/4. (End)
MAPLE
a[0]:=0:a[1]:=1:for n from 2 to 50 do a[n]:=2*a[n-1]+3*a[n-2]+5 od: seq(a[n], n=1..33); # Zerinvary Lajos, Dec 14 2008
MATHEMATICA
LinearRecurrence[{3, 1, -3}, {1, 7, 22}, 30] (* Harvey P. Dale, Sep 22 2023 *)
PROG
(Magma) [(-10-3*(-1)^n+21*3^n)/8: n in [0..30]]; // Vincenzo Librandi, Nov 16 2011
(PARI) Vec((1+4*x)/((1-x^2)*(1-3*x)) + O(x^30)) \\ Michel Marcus, Aug 14 2017
CROSSREFS
Cf. A084431.
Sequence in context: A354430 A122238 A101289 * A278767 A286186 A282035
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jun 26 2003
STATUS
approved