OFFSET
0,7
COMMENTS
b(n) = b(n-1)/(1 + b(n-2)) is Pielou's delayed discrete logistic difference equation with unit lag and unit parameters.
REFERENCES
E. C. Pielou, Population and Community Ecology: Principles and Methods, Gordon and Breach, Science Publishers, Inc. (1974). See p. 80.
MATHEMATICA
b[0]=0; b[1]=1; b[n_]:=b[n-1]/(1+b[n-2]); a[n_]:= Numerator[b[n]]; Array[a, 21, 0]
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
Stefano Spezia, Aug 26 2024
STATUS
approved