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!)
A165470 a(0)=1, a(1)=5, a(n) = 20*a(n-2) - a(n-1). 2
1, 5, 15, 85, 215, 1485, 2815, 26885, 29415, 508285, 80015, 10085685, -8485385, 210199085, -379906785, 4583888485, -12182024185, 103859793885, -347500277585, 2424696155285, -9374701706985, 57868624812685, -245362658952385, 1402735155206085, -6309988334253785 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n)/a(n-1) tends to -5.
LINKS
FORMULA
G.f.: (1+6*x)/(1+x-20*x^2).
a(n) = Sum_{k=0..n} A112555(n,k)*4^k.
a(n) = (10*4^n-(-5)^n)/9. - Klaus Brockhaus, Sep 25 2009
E.g.f.: (10*exp(4*x) - exp(-5*x))/9. - G. C. Greubel, Oct 20 2018
MAPLE
seq(coeff(series((1+6*x)/(1+x-20*x^2), x, n+1), x, n), n = 0 .. 25); # Muniru A Asiru, Oct 21 2018
MATHEMATICA
LinearRecurrence[{-1, 20}, {1, 5}, 40] (* G. C. Greubel, Oct 20 2018 *)
PROG
(PARI) vector(40, n, n--; (10*4^n-(-5)^n)/9) \\ G. C. Greubel, Oct 20 2018
(Magma) [(10*4^n-(-5)^n)/9: n in [0..40]]; // G. C. Greubel, Oct 20 2018
(Python) for n in range(0, 30): print(int((10*4**n-(-5)**n)/9), end=', ') # Stefano Spezia, Oct 21 2018
(GAP) a:=[1, 5];; for n in [3..25] do a[n]:=20*a[n-2]-a[n-1]; od; a; # Muniru A Asiru, Oct 21 2018
CROSSREFS
Sequence in context: A183937 A275971 A030487 * A165625 A058820 A054363
KEYWORD
easy,sign
AUTHOR
Philippe Deléham, Sep 20 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 April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)