OFFSET
0,1
COMMENTS
Fifth binomial transform of A135530.
LINKS
Muniru A Asiru, Table of n, a(n) for n = 0..252
Index entries for linear recurrences with constant coefficients, signature (10,-23).
FORMULA
a(n) = 10*a(n-1) - 23*a(n-2) for n>1; a(0) = 2; a(1) = 11.
G.f.: (2-9*x)/(1-10*x+23*x^2).
E.g.f.: exp(5*x)*(4*cosh(sqrt(2)*x) + sqrt(2)*sinh(sqrt(2)*x))/2. - Stefano Spezia, Oct 24 2023
MAPLE
seq(simplify(((4+sqrt(2))*(5+sqrt(2))^n+(4-sqrt(2))*(5-sqrt(2))^n)*1/4), n = 0 .. 20); # Emeric Deutsch, Jun 28 2009
MATHEMATICA
LinearRecurrence[{10, -23}, {2, 11}, 50] (* G. C. Greubel, Aug 17 2018 *)
Table[(((4+Sqrt[2])(5+Sqrt[2])^n)+((4-Sqrt[2])(5-Sqrt[2])^n))/4, {n, 0, 20}]//Simplify (* Harvey P. Dale, Mar 07 2020 *)
PROG
(Magma) Z<x>:=PolynomialRing(Integers()); N<r>:=NumberField(x^2-2); S:=[ ((4+r)*(5+r)^n+(4-r)*(5-r)^n)/4: n in [0..19] ]; [ Integers()!S[j]: j in [1..#S] ]; // Klaus Brockhaus, Jul 01 2009
(GAP) a := [2, 11];; for n in [3..10^2] do a[n] := 10*a[n-1] - 23*a[n-2]; od; a; # Muniru A Asiru, Feb 02 2018
(PARI) x='x+O('x^30); Vec((2-9*x)/(1-10*x+23*x^2)) \\ G. C. Greubel, Aug 17 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Al Hakanson (hawkuu(AT)gmail.com), Jun 22 2009
EXTENSIONS
Edited and extended beyond a(4) by Klaus Brockhaus, Jul 01 2009
Extended by Emeric Deutsch, Jun 28 2009
STATUS
approved