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!)
A164595 a(n) = 10*a(n-1) - 17*a(n-2) for n > 1; a(0) = 5, a(1) = 37. 2
5, 37, 285, 2221, 17365, 135893, 1063725, 8327069, 65187365, 510313477, 3994949565, 31274166541, 244827522805, 1916614396853, 15004076080845, 117458316061949, 919513867245125, 7198347299398117, 56351737250814045, 441145468418372461, 3453475150919885845 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Binomial transform of A164594. Fifth binomial transform of A164737.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000 (terms 0..144 from Vincenzo Librandi)
FORMULA
a(n) = ((5 + sqrt(18))*(5 + sqrt(8))^n + (5 - sqrt(18))*(5 - sqrt(8))^n)/2.
G.f.: (5-13*x)/(1-10*x+17*x^2).
E.g.f.: exp(5*x)*(5*cosh(2*sqrt(2)*x) + 3*sqrt(2)*sinh(2*sqrt(2)*x)). - G. C. Greubel, Aug 11 2017
a(n) = (1/2)*Sum_{k=0..n} binomial(n,k)*2^(n-k)*(3*Q(2*k+1) + 2*Q(2*k)), where Q(n) are the Pell-Lucas numbers (A002203). - G. C. Greubel, Apr 21 2020
MAPLE
seq(coeff(series( (5-13*x)/(1-10*x+17*x^2) , x, n+1), x, n), n = 0..25); # G. C. Greubel, Apr 21 2020
MATHEMATICA
CoefficientList[Series[(5 -13z)/(1 -10z +17z^2), {z, 0, 25}], z] (* Vladimir Joseph Stephan Orlovsky, Jun 12 2011 *)
LinearRecurrence[{10, -17}, {5, 37}, 25] (* G. C. Greubel, Aug 11 2017 *)
PROG
(Magma) Z<x>:=PolynomialRing(Integers()); N<r>:=NumberField(x^2-2); S:=[ ((5+3*r)*(5+2*r)^n+(5-3*r)*(5-2*r)^n)/2: n in [0..18] ]; [ Integers()!S[j]: j in [1..#S] ]; // Klaus Brockhaus, Aug 24 2009
(PARI) my(x='x+O('x^25)); Vec((5-13*x)/(1-10*x+17*x^2)) \\ G. C. Greubel, Aug 11 2017
(Sage)
def A164595_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (5-13*x)/(1-10*x+17*x^2) ).list()
A164595_list(25) # G. C. Greubel, Apr 21 2020
CROSSREFS
Sequence in context: A236581 A262410 A089303 * A046636 A091126 A066381
KEYWORD
nonn,easy
AUTHOR
Al Hakanson (hawkuu(AT)gmail.com), Aug 17 2009
EXTENSIONS
Extended by Klaus Brockhaus and R. J. Mathar, Aug 24 2009
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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)