OFFSET
0,1
COMMENTS
This coincides with the Pisot T(7,50) sequence as defined in A008776 at least up to n <= 14000. - R. J. Mathar, Feb 13 2016
LINKS
FORMULA
Empirical g.f.: (7+x-x^3-x^4-x^5-x^6) / (1-7*x-x^2+x^4+x^5+x^6+x^7). - Colin Barker, Dec 02 2014
PROG
(PARI) T(a0, a1, maxn) = a=vector(maxn); a[1]=a0; a[2]=a1; for(n=3, maxn, a[n]=floor(a[n-1]^2/a[n-2])); a;
T(7, 50, 30) \\ Colin Barker, Feb 14 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved