The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A156162 a(n) = 34*a(n-1)-a(n-2)-2312 for n > 2; a(1)=625, a(2)=18769. 2
625, 18769, 635209, 21576025, 732947329, 24898630849, 845820499225, 28732998340489, 976076123075089, 33157855186210225, 1126391000208070249, 38264136151888175929, 1299854238163989909025, 44156779961423768728609 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
lim_{n -> infinity} a(n)/a(n-1) = (17+12*sqrt(2)).
LINKS
FORMULA
a(n) = (578+(387-182*sqrt(2))*(17+12*sqrt(2))^n+(387+182*sqrt(2))*(17-12*sqrt(2))^n)/8.
G.f.: x*(625-3106*x+169*x^2)/((1-x)*(1-34*x+x^2)).
EXAMPLE
a(3) = 34*a(2)-a(1)-2312 = 34*18769-625-2312 = 635209.
MATHEMATICA
RecurrenceTable[{a[1]==625, a[2]==18769, a[n]==34a[n-1]-a[n-2]-2312}, a, {n, 20}] (* or *) LinearRecurrence[{35, -35, 1}, {625, 18769, 635209}, 20] (* Harvey P. Dale, Sep 29 2016 *)
PROG
(PARI) {m=14; v=concat([625 , 18769], vector(m-2)); for(n=3, m, v[n]=34*v[n-1]-v[n-2]-2312); v}
CROSSREFS
Third trisection of A156159.
Cf. A156164 (decimal expansion of (17+12*sqrt(2))).
Sequence in context: A055868 A016852 A016972 * A017044 A080175 A017128
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Feb 09 2009
EXTENSIONS
G.f. corrected by Klaus Brockhaus, Sep 23 2009
STATUS
approved

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 June 4 17:49 EDT 2024. Contains 373102 sequences. (Running on oeis4.)