login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(n)=n for n<=3; thereafter a(n)=a(n-1)+a(n-2)+a(n-3)+1.
3

%I #25 Sep 08 2022 08:46:02

%S 0,1,2,3,7,13,24,45,83,153,282,519,955,1757,3232,5945,10935,20113,

%T 36994,68043,125151,230189,423384,778725,1432299,2634409,4845434,

%U 8912143,16391987,30149565,55453696,101995249,187598511,345047457,634641218,1167287187

%N a(n)=n for n<=3; thereafter a(n)=a(n-1)+a(n-2)+a(n-3)+1.

%D Atanassov, K. T.; Atanassova, V.; Shannon, A. G.; Turner, J. C. New visual perspectives on Fibonacci numbers. With a foreword by A. F. Horadam. World Scientific Publishing Co., Inc., River Edge, NJ, 2002. xvi+313 pp. ISBN: 981-238-134-1 MR1932564 (2003h:11015). See p. 68.

%H Bruno Berselli, <a href="/A213967/b213967.txt">Table of n, a(n) for n = 0..1000</a>

%H <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (2,0,0,-1).

%F G.f.: x*(1-x^2+x^3)/(1-2*x+x^4). - _Bruno Berselli_, Jul 02 2012

%p f:=proc(n) option remember; if n <= 3 then n else f(n-1)+f(n-2)+f(n-3)+1; fi; end:

%p seq(f(n),n=0..60);

%t Join[{0}, LinearRecurrence[{2, 0, 0, -1}, {1, 2, 3, 7}, 40]] (* _Jean-François Alcover_, Feb 13 2018 *)

%t nxt[{a_,b_,c_}]:={b,c,a+b+c+1}; Join[{0},NestList[nxt,{1,2,3},40][[All,1]]] (* _Harvey P. Dale_, Sep 07 2020 *)

%o (Magma) [n le 3 select n else Self(n)+Self(n-1)+Self(n-2)+1: n in [0..35]]; // _Bruno Berselli_, Jul 02 2012

%o (Haskell)

%o a213967 n = a213967_list !! n

%o a213967_list = 0 : xs where

%o xs = 1 : 2 : 3 : map (+ 1)

%o (zipWith3 (((+) .) . (+)) xs (tail xs) (drop 2 xs))

%o -- _Reinhard Zumkeller_, Dec 29 2014

%Y Cf. A001590.

%Y Cf. A248098.

%K nonn,easy

%O 0,3

%A _N. J. A. Sloane_, Jun 30 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 22 11:40 EDT 2024. Contains 376114 sequences. (Running on oeis4.)