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!)
A298402 a(n) = 2*a(n-1) - a(n-3) + a(floor(n/2)), where a(0) = 1, a(1) = 1, a(2) = 1. 3
1, 1, 1, 2, 4, 8, 16, 30, 56, 100, 178, 308, 532, 902, 1526, 2550, 4254, 7038, 11626, 19098, 31336, 51224, 83658, 136288, 221884, 360642, 585898, 950814, 1542512, 2500652, 4053040, 6566118, 10635838, 17222890, 27886700, 45144600, 73077936, 118280798 (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] = 2*a[n - 1] - a[n - 3] + a[Floor[n/2]];
Table[a[n], {n, 0, 90}] (* A298402 *)
CROSSREFS
Sequence in context: A347775 A075529 A005305 * A125548 A227298 A164229
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 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)