OFFSET
0,6
COMMENTS
The sequence has many plateaus where numbers repeat three times or more. 16 appears 6 times in a row. The long start up vector produces this phase locking / staircase behavior which is probably due to feedback effects.
LINKS
Muniru A Asiru, Table of n, a(n) for n = 0..10000
MAPLE
a:= proc(n) option remember: if n<5 then 1 else procname(procname(n-1))+procname(n-procname(n-3)) fi end: seq(a(n), n=0..80); # Muniru A Asiru, Jun 05 2018
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1; a[3] = 1;
a[4] = 1; (*a[4]=3; a[5]=2; a[6]=3*);
a[n_Integer] := a[n] = a[a[n - 1]] + a[n - a[-3 + n]]
b = Table[a[n], {n, 0, 200}]
PROG
(GAP) a:=[1, 1, 1, 1];; for n in [5..80] do a[n]:=a[a[n-1]]+a[n-a[n-3]]; od;
a:=Concatenation([1], a); # Muniru A Asiru, Jun 05 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Jun 11 2010
STATUS
approved