OFFSET
0,3
REFERENCES
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.
LINKS
Bruno Berselli, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (2,0,0,-1).
FORMULA
G.f.: x*(1-x^2+x^3)/(1-2*x+x^4). - Bruno Berselli, Jul 02 2012
MAPLE
f:=proc(n) option remember; if n <= 3 then n else f(n-1)+f(n-2)+f(n-3)+1; fi; end:
seq(f(n), n=0..60);
MATHEMATICA
Join[{0}, LinearRecurrence[{2, 0, 0, -1}, {1, 2, 3, 7}, 40]] (* Jean-François Alcover, Feb 13 2018 *)
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 *)
PROG
(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
(Haskell)
a213967 n = a213967_list !! n
a213967_list = 0 : xs where
xs = 1 : 2 : 3 : map (+ 1)
(zipWith3 (((+) .) . (+)) xs (tail xs) (drop 2 xs))
-- Reinhard Zumkeller, Dec 29 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 30 2012
STATUS
approved