login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A081704 Let f(0)=1, f(1)=t, f(n+1) = (f(n)^2+t^n)/f(n-1). f(t) is a polynomial with integer coefficients. Then a(n) = f(n) when t=3. 5

%I #23 Jul 09 2022 21:47:29

%S 1,3,12,51,219,942,4053,17439,75036,322863,1389207,5977446,25719609,

%T 110665707,476169708,2048851419,8815747971,37932185598,163213684077,

%U 702271863591,3021718265724,13001775737847,55943723892063,240713292246774,1035735289557681

%N Let f(0)=1, f(1)=t, f(n+1) = (f(n)^2+t^n)/f(n-1). f(t) is a polynomial with integer coefficients. Then a(n) = f(n) when t=3.

%C f satisfies the linear recursion f(n+1) = (t+2)f(n)-tf(n-1)). For t=3 this gives a(n+1) = 5*a(n)-3*a(n-1).

%C Given the 3 X 3 matrix [1,1,1; 1,1,2; 1,1,3] = M, a(n) = term (1,1) in M^(n+1). - _Gary W. Adamson_, Aug 06 2010

%H Colin Barker, <a href="/A081704/b081704.txt">Table of n, a(n) for n = 0..1000</a>

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (5,-3).

%F a(n+1) = (a(n)^2 + 3^n) / a(n-1).

%F From _Philippe Deléham_, Nov 14 2008: (Start)

%F G.f.: (1-2*x)/(1-5*x+3*x^2).

%F a(n) = Sum_{k, 0<=k<=n} A147703(n,k)*2^k. (End)

%F a(n) = (2^(-1-n)*((5-sqrt(13))^n*(-1+sqrt(13)) + (1+sqrt(13))*(5+sqrt(13))^n))/sqrt(13). - _Colin Barker_, Nov 26 2016

%F E.g.f.: exp(5*x/2)*(sqrt(13)*cosh(sqrt(13)*x/2) + sinh(sqrt(13)*x/2))/sqrt(13). - _Stefano Spezia_, Jul 09 2022

%p f := proc(n) if n=0 then 1 elif n=1 then t else sort(simplify((f(n-1)^2+t^(n-1))/f(n-2)),t) fi end; a := i->subs(t=3,f(i));

%t a[0]=1; a[1]=3; a[n_] := a[n]=5a[n-1]-3a[n-2]; Array[a,25,0]

%t LinearRecurrence[{5,-3},{1,3},30] (* _Harvey P. Dale_, Jul 28 2013 *)

%o (PARI) Vec((1-2*x)/(1-5*x+3*x^2) + O(x^30)) \\ _Colin Barker_, Nov 26 2016

%Y Cf. A006012, A001519.

%Y Equals 3*A018902(n-1) for n>0.

%K nonn,easy

%O 0,2

%A Victor Ufnarovski (ufn(AT)maths.lth.se), Apr 02 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 03:05 EDT 2024. Contains 371782 sequences. (Running on oeis4.)