OFFSET
0,4
COMMENTS
Homogeneous cubic recurrence relation of order 2 with +1 coefficients.
MATHEMATICA
RecurrenceTable[{a[0] == 0, a[1] == 1, a[n]==a[n-1]^3 + a[n-2]^2}, a, {n, 10}] (* Vincenzo Librandi, Sep 11 2015 *)
PROG
(Magma) I:=[0, 1]; [n le 2 select I[n] else Self(n-2)^2 + Self(n-1)^3: n in [1..10]]; // Vincenzo Librandi, Sep 11 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew R. Reiter, Sep 10 2015
EXTENSIONS
Offset changed and terms a(0)-a(1) prepended by Vincenzo Librandi, Sep 11 2015
STATUS
approved