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!)
A084131 a(n) = 10*a(n-1) - 17*a(n-2), a(0) = 1, a(1) = 5. 2
1, 5, 33, 245, 1889, 14725, 115137, 901045, 7053121, 55213445, 432231393, 3383685365, 26488919969, 207366548485, 1623353845377, 12708307129525, 99486055923841, 778819338036485, 6096930429659553, 47729375549975285 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Binomial transform of A084130.
LINKS
FORMULA
a(n) = (5+sqrt(8))^n/2 + (5-sqrt(8))^n/2.
G.f.: (1-5*x)/(1-10*x+17*x^2).
E.g.f.: exp(5*x)*cosh(sqrt(8)*x).
a(n) = 17^((n-1)/2)*( sqrt(17)*ChebyshevU(n, 5/sqrt(17)) - 5*ChebyshevU(n-1, 5/sqrt(17)) ). - G. C. Greubel, Oct 13 2022
MATHEMATICA
LinearRecurrence[{10, -17}, {1, 5}, 20] (* Harvey P. Dale, Apr 04 2021 *)
PROG
(Magma) [n le 2 select 5^(n-1) else 10*Self(n-1) -17*Self(n-2): n in [1..41]]; // G. C. Greubel, Oct 13 2022
(SageMath)
A084131=BinaryRecurrenceSequence(10, -17, 1, 5)
[A084131(n) for n in range(41)] # G. C. Greubel, Oct 13 2022
CROSSREFS
Cf. A084130.
Sequence in context: A284734 A093427 A142989 * A084771 A153398 A242522
KEYWORD
easy,nonn
AUTHOR
Paul Barry, May 16 2003
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 23 08:14 EDT 2024. Contains 371905 sequences. (Running on oeis4.)