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!)
A154025 a(n+2) = 64*a(n+1) - a(n), a(1)=0, a(2)=8. 1
0, 8, 512, 32760, 2096128, 134119432, 8581547520, 549084921848, 35132853450752, 2247953535926280, 143833893445831168, 9203121226997268472, 588855924634379351040, 37677576055373281198088, 2410776011619255617326592 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
If a(n)=x and a(n+1)=y then (x^2+y^2)/(xy+1)=64.
LINKS
FORMULA
G.f.: 8*x^2/(1 -64*x +x^2). - R. J. Mathar, Jan 05 2011
MATHEMATICA
CoefficientList[Series[(8z)/(z^2-64z+1), {z, 0, 20}], z] (* Vincenzo Librandi, Jan 29 2012 *)
LinearRecurrence[{64, -1}, {0, 8}, 20] (* Harvey P. Dale, Dec 19 2023 *)
PROG
(Magma) I:=[0, 8]; [n le 2 select I[n] else 64*Self(n-1)-Self(n-2): n in [1..20]]; // Vincenzo Librandi, Jan 29 2012
(PARI) a(n)=([0, 1; -1, 64]^(n-1)*[0; 8])[1, 1] \\ Charles R Greathouse IV, Sep 01 2016
CROSSREFS
Sequence in context: A128794 A195804 A145259 * A013713 A109966 A139567
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 04 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 May 20 10:42 EDT 2024. Contains 372712 sequences. (Running on oeis4.)