A190949 Odd Fibonacci numbers with odd index.
1, 5, 13, 89, 233, 1597, 4181, 28657, 75025, 514229, 1346269, 9227465, 24157817, 165580141, 433494437, 2971215073, 7778742049, 53316291173, 139583862445, 956722026041, 2504730781961, 17167680177565, 44945570212853, 308061521170129, 806515533049393
Offset: 1
References
- Thomas Koshy, "Fibonacci and Lucas Numbers and Applications", Wiley, New York, 2001.
Links
- T. D. Noe, Table of n, a(n) for n = 1..200
- Eric W. Weisstein, Fibonacci Number.
- Index entries for linear recurrences with constant coefficients, signature (0,18,0,-1).
Programs
-
Mathematica
LinearRecurrence[{0,18,0,-1}, {1,5,13,89}, 50]
-
PARI
a(n)=fibonacci(n\2*6+if(n%2,1,-1)) \\ Charles R Greathouse IV, Jun 08 2011
-
PARI
Vec(x*(1-x)*(1+6*x+x^2)/((1+4*x-x^2)*(1-4*x-x^2)) + O(x^30)) \\ Colin Barker, Mar 27 2016
Formula
a(n) = 18*a(n-2) - a(n-4), with a(1)=1, a(2)=5, a(3)=13, and a(4)=89.
G.f.: x*(1-x)*(1+6*x+x^2)/((1+4*x-x^2)*(1-4*x-x^2)). - Colin Barker, Jun 19 2012
a(n) = (-(2-sqrt(5))^n + (-2-sqrt(5))^n*(-2+sqrt(5)) + 2*(-2+sqrt(5))^n + sqrt(5)*(-2+sqrt(5))^n + (2+sqrt(5))^n)/(2*sqrt(5)) for n>0. - Colin Barker, Mar 27 2016
Comments