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!)
A259547 a(n) = n^4*Fibonacci(n). 2
0, 1, 16, 162, 768, 3125, 10368, 31213, 86016, 223074, 550000, 1303049, 2985984, 6654713, 14482832, 30881250, 64684032, 133383037, 271257984, 544872101, 1082400000, 2128789026, 4148908016, 8019403537, 15383789568, 29306640625, 55473687568, 104384578338 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Index entries for linear recurrences with constant coefficients, signature (5,-5,-10,15,11,-15,-10,5,5,1).
FORMULA
G.f.: -x*(x^8-11*x^7+87*x^6-48*x^5+240*x^4+48*x^3+87*x^2+11*x+1) / (x^2+x-1)^5.
MAPLE
a:= n-> n^4*(<<1|1>, <1|0>>^n)[1, 2]:
seq(a(n), n=0..50); # Alois P. Heinz, Jun 30 2015
MATHEMATICA
Table[n^4 Fibonacci[n], {n, 0, 30}] (* or *) LinearRecurrence[{5, -5, -10, 15, 11, -15, -10, 5, 5, 1}, {0, 1, 16, 162, 768, 3125, 10368, 31213, 86016, 223074}, 30] (* Harvey P. Dale, Mar 09 2016 *)
PROG
(PARI) a(n) = n^4*fibonacci(n)
(PARI) concat(0, Vec(-x*(x^8 -11*x^7 +87*x^6 -48*x^5 +240*x^4 +48*x^3 +87*x^2 +11*x +1)/(x^2 +x -1)^5 + O(x^50)))
CROSSREFS
Sequence in context: A238533 A085538 A371195 * A211558 A333062 A208311
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Jun 30 2015
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 13 16:16 EDT 2024. Contains 372522 sequences. (Running on oeis4.)