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!)
A298339 a(n) = a(n-1) + a(n-2) + a([n/2]), where a(0) = 1, a(1) = 2, a(2) = 3. 3

%I #4 Feb 09 2018 21:49:51

%S 1,2,3,7,13,23,43,73,129,215,367,605,1015,1663,2751,4487,7367,11983,

%T 19565,31763,51695,83825,136125,220555,357695,579265,938623,1519551,

%U 2460925,3983227,6448639,10436353,16892359,27336079,44240421,71588483,115848469

%N a(n) = a(n-1) + a(n-2) + a([n/2]), where a(0) = 1, a(1) = 2, a(2) = 3.

%C 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.

%H Clark Kimberling, <a href="/A298339/b298339.txt">Table of n, a(n) for n = 0..1000</a>

%t a[0] = 1; a[1] = 2; a[2] = 3;

%t a[n_] := a[n] = a[n - 1] + a[n - 2] + a[Floor[n/2]];

%t Table[a[n], {n, 0, 30}] (* A298339 *)

%Y Cf. A001622, A000045, A298338.

%K nonn,easy

%O 0,2

%A _Clark Kimberling_, Feb 09 2018

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 13:27 EDT 2024. Contains 371971 sequences. (Running on oeis4.)