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

A127261
a(0)=2, a(1)=2, a(n) = 2*a(n-1) + 10*a(n-2).
1
2, 2, 24, 68, 376, 1432, 6624, 27568, 121376, 518432, 2250624, 9685568, 41877376, 180610432, 779994624, 3366093568, 14532133376, 62725202432, 270771738624, 1168795501568, 5045308389376
OFFSET
0,1
FORMULA
G.f.: (2*(x-1))/(2*x(5*x+1)-1). - Harvey P. Dale, Oct 15 2013
MAPLE
a[0]:=2:a[1]:=2:for i from 2 to 40 do a[i]:=2*a[i-1]+10*a[i-2] od: seq(a[n], n=0..40);
MATHEMATICA
LinearRecurrence[{2, 10}, {2, 2}, 30] (* or *) CoefficientList[Series[(2*(x-1))/(2*x(5*x+1)-1), {x, 0, 30}], x] (* Harvey P. Dale, Oct 15 2013 *)
PROG
(Sage) [lucas_number2(n, 2, -10) for n in range(0, 21)] # Zerinvary Lajos, Apr 30 2009
CROSSREFS
Sequence in context: A156447 A272641 A334123 * A239531 A194130 A356908
KEYWORD
easy,nonn
AUTHOR
Miklos Kristof, Mar 27 2007
STATUS
approved