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!)
A005821 a(n) = [ tau*a(n-1) ] + a(n-2). 3
0, 1, 1, 2, 4, 8, 16, 33, 69, 144, 301, 631, 1321, 2768, 5799, 12150, 25458, 53341, 111765, 234180, 490676, 1028110, 2154192, 4513665, 9457455, 19816148, 41520655, 86997979, 182286341, 381943474 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
REFERENCES
Lakhtakia, Akhlesh, and Russell Messier. "Self-similar sequences and chaos from Gauss sums." Computers & graphics 13.1 (1989): 59-62. See Eq. (4b).
LINKS
A. Lakhtakia & R. Messier, Self-similar sequences and chaos from Gauss sums, Computers & Graphics 13.1 (1989), 59-62. (Annotated scanned copy)
MAPLE
Digits := 20: tau := evalf( (1+sqrt(5))/2): A005821 := proc(n) option remember; if n <= 1 then n; else A005821(n-2)+floor(tau*A005821(n-1)); fi; end;
MATHEMATICA
nxt[{a_, b_}]:={b, a+Floor[b*GoldenRatio]}; NestList[nxt, {0, 1}, 30][[All, 1]] (* Harvey P. Dale, Oct 10 2017 *)
CROSSREFS
Sequence in context: A098588 A367715 A126683 * A177794 A004149 A129986
KEYWORD
nonn
AUTHOR
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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)