A128429 A linear recurrence sequence: a(n) = a(n-1) + a(n-3) + a(n-5) + a(n-6).
1, 1, 1, 1, 1, 1, 4, 7, 10, 16, 25, 40, 67, 109, 175, 283, 457, 739, 1198, 1939, 3136, 5074, 8209, 13282, 21493, 34777, 56269, 91045, 147313, 238357, 385672, 624031, 1009702, 1633732, 2643433, 4277164, 6920599, 11197765, 18118363, 29316127, 47434489
Offset: 0
Keywords
References
- Wolfram, S. A New Kind of Science. Champaign, IL: Wolfram Media, pp. 82-92, 2002.
Links
- Jinyuan Wang, Table of n, a(n) for n = 0..1000
- Bruce Rawles, Sacred Geometry
- Kelley L. Ross, The Golden Ratio and The Fibonacci Numbers
- Eric Weisstein's World of Mathematics, Golden Ratio
- Wikipedia, Golden Ratio
- Index entries for linear recurrences with constant coefficients, signature (1, 0, 1, 0, 1, 1).
Programs
-
Mathematica
LinearRecurrence[{1, 0, 1, 0, 1, 1}, {1, 1, 1, 1, 1, 1}, 41] (* Jean-François Alcover, Sep 25 2017 *)
Formula
a(n) = (1/4)*(3F(n-1) + b(n mod 6)), where F(n) = A000045(n) is the n-th Fibonacci number and b(0)=b(2)=b(3)=1, b(1)=4, b(4)=-2 and b(5)=-5.
G.f.: (-1 + x^3 + x^4 + 2*x^5)/((x^2 + x - 1)*(1 + x + x^2)*(x^2 - x + 1)). - R. J. Mathar, Nov 16 2007
Extensions
Edited by Dean Hickerson and Don Reble, Mar 09 2007
Comments