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!)
A298352 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, 9, 15, 27, 45, 77, 127, 213, 349, 577, 941, 1545, 2513, 4103, 6661, 10841, 17579, 28547, 46253, 75013, 121479, 196841, 318669, 516087, 835333, 1352361, 2188635, 3542541, 5732721, 9277775, 15013009, 24294887, 39311999, 63613547, 102932207 (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}] (* A298352 *)
CROSSREFS
Sequence in context: A291153 A147087 A140190 * A083658 A018436 A018298
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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)