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!)
A298403 a(n) = 2*a(n-1) - a(n-3) + a(floor(n/2)), where a(0) = 1, a(1) = 2, a(2) = 3. 3
1, 2, 3, 7, 15, 30, 60, 112, 209, 373, 664, 1149, 1985, 3366, 5695, 9517, 15877, 26268, 43392, 71280, 116956, 191184, 312237, 508667, 828135, 1346018, 2186735, 3548701, 5757079, 9333118, 15127052, 24506542, 39695843, 64280511, 104080748, 168491921, 272746723 (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] = 2*a[n - 1] - a[n - 3] + a[Floor[n/2]];
Table[a[n], {n, 0, 90}] (* A298403 *)
CROSSREFS
Sequence in context: A074742 A020873 A049958 * A177487 A372889 A153010
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 July 3 13:19 EDT 2024. Contains 373982 sequences. (Running on oeis4.)