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!)
A298404 a(n) = 2*a(n-1) - a(n-3) + a(ceiling(n/2)), where a(0) = 1, a(1) = 1, a(2) = 1. 3
1, 1, 1, 2, 4, 9, 18, 36, 67, 125, 223, 397, 687, 1187, 2013, 3406, 5692, 9496, 15711, 25953, 42633, 69952, 114348, 186750, 304235, 495309, 805055, 1307888, 2122480, 3443311, 5582140, 9047492, 14657365, 23742086, 38446176, 62250698, 100775021, 163129819 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n)/a(n-1) -> (1 + sqrt(5))/2, the golden ratio (A001622), so that (a(n)) has the growth rate of the Fibonacci numbers (A000045). See A298338 for a guide to related sequences.
LINKS
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1;
a[n_] := a[n] = 2*a[n - 1] - a[n - 3] + a[Ceiling[n/2]];
Table[a[n], {n, 0, 90}] (* A298404 *)
CROSSREFS
Sequence in context: A065030 A103321 A138196 * A101351 A293333 A111662
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 10 2018
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 23 14:15 EDT 2024. Contains 371914 sequences. (Running on oeis4.)