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

%I #4 Feb 09 2018 21:50:11

%S 1,1,1,3,5,11,21,37,69,127,217,381,667,1117,1911,3245,5373,8999,15039,

%T 24705,40861,67477,110249,180971,296593,482937,788529,1286505,2090073,

%U 3401283,5532217,8974361,14574055,23658665,38342969,62182605,100822167,163301365

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

%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="/A298342/b298342.txt">Table of n, a(n) for n = 0..1000</a>

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

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

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

%Y Cf. A001622, A000045, A298338.

%K nonn,easy

%O 0,4

%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 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)