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!)
A298344 a(n) = a(n-1) + a(n-2) + a([n/3]) + a([2n/3]), where a(0) = 1, a(1) = 1, a(2) = 1. 2
1, 1, 1, 4, 7, 16, 31, 55, 103, 193, 331, 583, 1024, 1717, 2941, 5005, 8293, 13897, 23245, 38197, 63190, 104383, 170569, 280012, 458977, 747385, 1220362, 1991185, 3234985, 5264560, 8563066, 13891147, 22558927, 36621226, 59351305, 96253126, 156064432 (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/3]] + a[Floor[2n/3]];
Table[a[n], {n, 0, 30}] (* A298344 *)
CROSSREFS
Sequence in context: A133600 A240736 A286741 * A285654 A051049 A298415
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 July 23 08:56 EDT 2024. Contains 374547 sequences. (Running on oeis4.)