login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A189071
The n-th derivative of x^10 evaluated at x=2.
0
1024, 5120, 23040, 92160, 322560, 967680, 2419200, 4838400, 7257600, 7257600, 3628800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
OFFSET
0,1
COMMENTS
This is the 10th row of A090802.
FORMULA
a(n) = (1/2)*(11-n)*a(n-1), a(0)=1024. - Bruno Berselli, Sep 08 2011
MATHEMATICA
LinearRecurrence[{1}, {1024, 5120, 23040, 92160, 322560, 967680, 2419200, 4838400, 7257600, 7257600, 3628800, 0}, 68] (* Ray Chandler, Jul 15 2015 *)
PROG
(PARI) a(n)=if(n<11, 10!/(10-n)!*2^(10-n)) \\ Charles R Greathouse IV, Sep 08 2011
(Magma) [n lt 1 select 1024 else n lt 11 select (1/2)*(11-n)*Self(n) else 0: n in [0..67]]; // Bruno Berselli, Sep 08 2011
CROSSREFS
Sequence in context: A195004 A237370 A135289 * A214800 A220765 A194933
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Apr 21 2011
STATUS
approved