|
Search: id:A155864
|
|
|
| A155864 |
|
A sequence of polynomial coefficients related to the Second derivative of the Pascal triangle: p(x,n)=x^n+1+x*d^2(x+1)^(n)/dx^2=If[n == 0, 1, x^n + 1 + x*D[(x + 1)^(n), {x, 2}]]. |
|
+0 1
|
|
| 1, 1, 1, 1, 2, 1, 1, 6, 6, 1, 1, 12, 24, 12, 1, 1, 20, 60, 60, 20, 1, 1, 30, 120, 180, 120, 30, 1, 1, 42, 210, 420, 420, 210, 42, 1, 1, 56, 336, 840, 1120, 840, 336, 56, 1, 1, 72, 504, 1512, 2520, 2520, 1512, 504, 72, 1, 1, 90, 720, 2520, 5040, 6300, 5040, 2520, 720, 90, 1
(list; table; graph; listen)
|
|
|
OFFSET
|
0,5
|
|
|
COMMENT
|
Row sums are:
{1, 2, 4, 14, 50, 162, 482, 1346, 3586, 9218, 23042,...}
|
|
FORMULA
|
p(x,n)=x^n+1+x*d^2(x+1)^(n)/dx^2
p(x,n)=If[n == 0, 1, x^n + 1 + x*D[(x + 1)^(n), {x, 2}]]
t(n,m)=coefficients(p(x,n))
|
|
EXAMPLE
|
{1},
{1, 1},
{1, 2, 1},
{1, 6, 6, 1},
{1, 12, 24, 12, 1},
{1, 20, 60, 60, 20, 1},
{1, 30, 120, 180, 120, 30, 1},
{1, 42, 210, 420, 420, 210, 42, 1},
{1, 56, 336, 840, 1120, 840, 336, 56, 1},
{1, 72, 504, 1512, 2520, 2520, 1512, 504, 72, 1},
{1, 90, 720, 2520, 5040, 6300, 5040, 2520, 720, 90, 1}
|
|
MATHEMATICA
|
Clear[p, n, m, x, a];
p[x_, n_] = If[n == 0, 1, x^n + 1 + x*D[(x + 1)^(n), {x, 2}]];
Table[ExpandAll[p[x, n]], {n, 0, 10}];
a = Table[CoefficientList[ExpandAll[p[x, n]], x], {n, 0, 10}];
Flatten[a]
|
|
CROSSREFS
|
Sequence in context: A143185 A157635 A075798 this_sequence A145903 A155795 A009963
Adjacent sequences: A155861 A155862 A155863 this_sequence A155865 A155866 A155867
|
|
KEYWORD
|
nonn,tabl,uned
|
|
AUTHOR
|
Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Jan 29 2009
|
|
|
Search completed in 0.002 seconds
|