You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
; A266709: Coefficient of x in minimal polynomial of the continued fraction [2,1^n,2,1,1,...], where 1^n means n ones.; Formula: a(n) = b(n+2), b(n) = 2*b(n-1)+2*b(n-2)-b(n-3), b(3) = -25, b(2) = -7, b(1) = -5, b(0) = 1mov$2,1add$0,2lpb$0sub$0,1add$1,$2add$5,$1add$1,$2mov$3,$5sub$3,6mov$4,$2mov$2,$3mov$5,1add$5,$4lpemov$0,$2
=> It would be nice to simplify the formula to a(n) = 2*a(n-1)+2*a(n-2)-a(n-3) with adjusted initial terms.
The text was updated successfully, but these errors were encountered:
Example:
=> It would be nice to simplify the formula to
a(n) = 2*a(n-1)+2*a(n-2)-a(n-3)
with adjusted initial terms.The text was updated successfully, but these errors were encountered: