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!)
A012493 Take every 5th term of Padovan sequence A000931, beginning with the fifth term. 1
0, 2, 9, 37, 151, 616, 2513, 10252, 41824, 170625, 696081, 2839729, 11584946, 47261895, 192809420, 786584466, 3208946545, 13091204281, 53406819691, 217878227876, 888855064897, 3626169232672, 14793304131648 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n+3) = 5*a(n+2) - 4*a(n+1) + a(n).
G.f.: x*(2-x)/(1-5*x+4*x^2-x^3). - Colin Barker, Feb 02 2012
MATHEMATICA
CoefficientList[Series[x*(2-x)/(1-5*x+4*x^2-x^3), {x, 0, 30}], x] (* Vincenzo Librandi, Apr 17 2012 *)
LinearRecurrence[{5, -4, 1}, {0, 2, 9}, 30] (* Harvey P. Dale, Nov 24 2018 *)
PROG
(Magma) I:=[0, 2, 9]; [n le 3 select I[n] else 5*Self(n-1)-4*Self(n-2)+Self(n-3): n in [1..30]]; // Vincenzo Librandi, Apr 17 2012
CROSSREFS
Sequence in context: A206374 A037553 A178875 * A106851 A129169 A162548
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
First term corrected by Colin Barker, Feb 02 2012
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 March 29 00:26 EDT 2024. Contains 371264 sequences. (Running on oeis4.)