OFFSET
0,5
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..15
S. Fomin, A. Zelevinsky, The Laurent Phenomenon, Adv. Appl. Math. 28 (2) (2002) 119-144. [R. J. Mathar, Oct 23 2009]
Sergey Fomin, Andrei Zelevinsky, The Laurent phenomenon, arXiv:math/0104241 [math.CO], 2001. [R. J. Mathar, Oct 23 2009]
FORMULA
a(n) ~ 1/sqrt(10) * c^(t^n), where t = A058265 = 1.8392867552141611325518525646532866..., c = 1.2712241060822553131735186905646486868228186258439... . - Vaclav Kotesovec, May 06 2015
a(n) = 10*a(n-1)*a(n-2)*a(n-3)-a(n-1)-a(n-2)-a(n-3)-a(n-4). - Bruno Langlois, Aug 21 2016
MATHEMATICA
RecurrenceTable[{a[0]==a[1]==a[2]==a[3]==1, a[n]==(a[n-1]^2+a[n-2]^2+a[n-3]^2+ a[n-1]a[n-2]+ a[n-1]a[n-3]+a[n-2]a[n-3])/a[n-4]}, a, {n, 13}] (* Harvey P. Dale, May 21 2012 *)
PROG
(PARI) a(n)=if(n<4, 1, (a(n-1)^2+a(n-2)^2+a(n-3)^2+a(n-1)*a(n-2)+a(n-1)*a(n-3)+a(n-2)*a(n-3))/a(n-4))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaume Oliver Lafont, Sep 29 2009
STATUS
approved