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!)
A298345 a(n) = a(n-1) + a(n-2) + a([n/3]) + a([2n/3]), where a(0) = 1, a(1) = 2, a(2) = 3. 2
1, 2, 3, 10, 18, 40, 79, 140, 262, 491, 842, 1483, 2605, 4368, 7482, 12732, 21096, 35351, 59131, 97166, 160744, 265532, 433898, 712302, 1167558, 1901218, 3104389, 5065229, 8229240, 13392126, 21782952, 35336664, 57385990, 93158035, 150979406, 244851226 (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/3]] + a[Floor[2n/3]];
Table[a[n], {n, 0, 30}] (* A298345 *)
CROSSREFS
Sequence in context: A333673 A070253 A147673 * A057507 A233895 A163467
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Feb 09 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 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)