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!)
A298349 a(n) = a(n-1) + a(n-2) + a([(n+1)/2]), where a(0) = 1, a(1) = 2, a(2) = 3. 2
1, 2, 3, 8, 14, 30, 52, 96, 162, 288, 480, 820, 1352, 2268, 3716, 6146, 10024, 16458, 26770, 43708, 70958, 115486, 187264, 304102, 492718, 799088, 1294074, 2096878, 3394668, 5497692, 8898506, 14406222, 23314752, 37737432, 61068642, 98832844, 159928256 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
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] = 2; a[2] = 3;
a[n_] := a[n] = a[n - 1] + a[n - 2] + a[Floor[(n+1)/2]];
Table[a[n], {n, 0, 30}] (* A298349 *)
CROSSREFS
Sequence in context: A173149 A128305 A328881 * A298343 A201361 A129700
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 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)