login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = (1+sqrt(11))^n + (1-sqrt(11))^n, with n >= 0. - Paolo P. Lava, Jul 31 2008
G.f.: G(0), where G(k)= 1 + 1/(1 - x*(11*k-1)/(x*(11*k+10) - 1/G(k+1))); (continued fraction). - Sergei N. Gladkovskii, Jun 18 2013
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 29 14:55 EDT 2023. Contains 365772 sequences. (Running on oeis4.)