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!)
A275857 a(n) = floor(c*s*a(n-1)) + floor(d*r*a(n-2)), where r = (1+sqrt(5))/2, s = r/(r-1), c = 1, d = 1, a(0) = 1, a(1) = 2. 6
1, 2, 6, 18, 56, 175, 548, 1717, 5381, 16865, 52859, 165674, 519267, 1627524, 5101104, 15988252, 50111546, 157063265, 492279150, 1542937247, 4835986551, 15157302067, 47507122597, 148900291588, 466694163381, 1462746914806, 4584648158602, 14369538930774 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = floor(s*a(n-1)) + floor(r*a(n-2)), where r = (1+sqrt(5))/2, s = r/(r-1).
G.f.: (1 - 2 x + x^2 - x^3)/(1 - 4 x + 3 x^2 - x^3 + x^5).
MATHEMATICA
c = 1; d = 1; z = 40;
r = (c + Sqrt[c^2 + 4 d])/2; s = r/(r - 1); a[0] = 1; a[1] = 1;
a[n_] := a[n] = Floor[c*s*a[n - 1]] + Floor[d*r*a[n - 2]];
t = Table[a[n], {n, 0, z}] (* A275856 *)
CROSSREFS
Sequence in context: A002999 A291228 A091142 * A111961 A190861 A071721
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 11 2016
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 19 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)