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!)
A298348 a(n) = a(n-1) + a(n-2) + a([(n+1)/2]), where a(0) = 1, a(1) = 1, a(2) = 1. 2
1, 1, 1, 3, 5, 11, 19, 35, 59, 105, 175, 299, 493, 827, 1355, 2241, 3655, 6001, 9761, 15937, 25873, 42109, 68281, 110883, 179657, 291367, 471851, 764573, 1237779, 2004593, 3244613, 5252861, 8501129, 13759991, 22267121, 36036873, 58313755, 94366565, 152696257 (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] = a[n - 1] + a[n - 2] + a[Floor[(n+1)/2]];
Table[a[n], {n, 0, 30}] (* A298348 *)
CROSSREFS
Sequence in context: A134127 A239519 A329178 * A303005 A320790 A175783
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 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)