OFFSET
0,1
REFERENCES
Higham, Jeff and Tanny, Stephen, A tamely chaotic meta-Fibonacci sequence. Twenty-third Manitoba Conference on Numerical Mathematics and Computing (Winnipeg, MB, 1993). Congr. Numer. 99 (1994), 67-94.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..10000
MAPLE
f := proc(n) option remember;
if n=0 then 3
elif n=1 then 1
elif n=2 then 0
else
f(n-1-f(n-1))+f(n-2-f(n-2));
fi;
end proc;
[seq(f(n), n=0..80)];
PROG
(Haskell)
a244483 n = a244483_list !! n
a244483_list = 3 : 1 : 0 : zipWith (+) xs (tail xs)
where xs = map a244483 $ zipWith (-) [1..] $ tail a244483_list
-- Reinhard Zumkeller, Jul 07 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 03 2014
STATUS
approved