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!)
A260304 a(n) = 5*a(n-1) - 5*a(n-2) for n>1, a(0)=2, a(1)=3. 0
2, 3, 5, 10, 25, 75, 250, 875, 3125, 11250, 40625, 146875, 531250, 1921875, 6953125, 25156250, 91015625, 329296875, 1191406250, 4310546875, 15595703125, 56425781250, 204150390625, 738623046875, 2672363281250, 9668701171875, 34981689453125, 126564941406250 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Lim_{n -> infinity} a(n + 1)/a(n) = 2 + phi = 3.6180339887..., where phi is the golden ratio (A001622).
LINKS
FORMULA
G.f.: (2 - 7*x)/(1 - 5*x + 5*x^2).
a(n) = ((5 + 2*sqrt(5))*((5 - sqrt(5))/2)^n + (5 - 2*sqrt(5))*((5 + sqrt(5))/2)^n)/5.
a(n) = 2*A030191(n) - 7*A030191(n-1). - Bruno Berselli, Nov 23 2015
MATHEMATICA
Table[((5 + 2 Sqrt[5]) ((5 - Sqrt[5])/2)^n + (5 - 2 Sqrt[5]) ((5 + Sqrt[5])/2)^n)/5, {n, 0, 30}]
RecurrenceTable[{a[0] == 2, a[1] == 3, a[n] == 5 a[n - 1] - 5 a[n - 2]}, a, {n, 0, 30}] (* Bruno Berselli, Nov 23 2015 *)
PROG
(Magma) [n le 2 select n+1 else 5*Self(n-1)-5*Self(n-2): n in [1..30]]; // Vincenzo Librandi, Nov 23 2015
(PARI) a(n)=([0, 1; -5, 5]^n*[2; 3])[1, 1] \\ Charles R Greathouse IV, Jul 26 2016
CROSSREFS
Cf. A093129: initial values 1,2; A081567: initial values 1,3.
Sequence in context: A050837 A107578 A011827 * A259438 A135961 A173253
KEYWORD
nonn,easy
AUTHOR
Ilya Gutkovskiy, Nov 21 2015
EXTENSIONS
Edited by Bruno Berselli, Nov 23 2015
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 25 09:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)