This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A268021 #8 Nov 29 2022 15:30:56 %S A268021 1,1,-1,-1,3,-5,-13,83,-1149,-94301,108447299,-10226797095997, %T A268021 -1109068512255229713405,11342218640394605506848882609549187, %U A268021 -12579297553175979435284002182896862386417808141640587517 %N A268021 a(1) = a(2) = 1; if n > 2 then a(n) = a(n-1)*a(n-2) - a(n-2) - a(n-1). %F A268021 |a(n)| ~ c^(phi^n), where phi = A001622 = (1+sqrt(5))/2 is the golden ratio and c = 1.097478514051533426... . - _Vaclav Kotesovec_, Jan 26 2016 %t A268021 a[1] = 1; a[2] = 1; a[n_] := a[n] = -a[n - 1] - a[n - 2] + a[n - 1]*a[n - 2];Table[a[n], {n, 20}] %t A268021 nxt[{a_,b_}]:={b,a*b-a-b}; NestList[nxt,{1,1},20][[All,1]] (* _Harvey P. Dale_, Nov 29 2022 *) %K A268021 sign %O A268021 1,5 %A A268021 _José María Grau Ribas_, Jan 24 2016