|
| |
|
|
A026933
|
|
a(n) = self-convolution of array T given by A008288.
|
|
3
| |
|
|
1, 2, 11, 52, 269, 1414, 7575, 41064, 224665, 1237898, 6859555, 38187164, 213408805, 1196524814, 6727323439, 37915058384, 214140178225, 1211694546194, 6867622511675, 38981807403268, 221562006394173, 1260814207833750
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,2
|
|
|
FORMULA
| a(n) = Sum_{k=0..n} D(n-k,k)^2 where D(n,k) = A008288(n,k) are the Delannoy numbers. [From Paul D. Hanna, Jan 10 2012]
G.f.: 1/(1+x)/sqrt(1-6*x+x^2). - Vladeta Jovovic (vladeta(AT)eunet.rs), May 13 2003
a(n)=(-1)^n*sum_{k=0...n}(-1)^k*A001850(k) - Benoit Cloitre (benoit7848c(AT)orange.fr), Sep 28 2005
G.f.: exp( Sum_{n>=1} A002203(n)^2/2 * x^n/n ) where A002203 are the companion Pell numbers. [From Paul D. Hanna, Jan 10 2012]
Self-convolution yields A204062; self-convolution of A204061. [From Paul D. Hanna, Jan 10 2012]
|
|
|
PROG
| (PARI) /* Sum of squares of Delannoy numbers [Paul D. Hanna, Jan 10 2012]: */
{a(n)=sum(k=0, n, polcoeff(polcoeff(1/(1-x-y-x*y +x*O(x^n)+y*O(y^k)), n-k, x), k, y)^2)}
(PARI) /* Involving squares of companion Pell numbers [Paul D. Hanna, Jan 10 2012]: */
{A002203(n)=polcoeff(2*x*(1+x)/(1-2*x-x^2+x*O(x^n)), n)}
{a(n)=polcoeff(exp(sum(k=1, n, A002203(k)^2/2*x^k/k)+x*O(x^n)), n)}
|
|
|
CROSSREFS
| Cf. A008288, A204061, A204062, A002203.
Sequence in context: A026996 A110308 A027201 * A052171 A168022 A030281
Adjacent sequences: A026930 A026931 A026932 * A026934 A026935 A026936
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Clark Kimberling (ck6(AT)evansville.edu)
|
|
|
EXTENSIONS
| More terms from Vladeta Jovovic (vladeta(AT)eunet.rs), May 13 2003
|
| |
|
|