login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A092424
Antidiagonal sums of triangle A092422, which is generated from the even-numbered Fibonacci polynomials (A011973).
1
1, 1, 2, 3, 5, 9, 15, 28, 48, 90, 159, 296, 537, 992, 1830, 3376, 6273, 11609, 21627, 40186, 74966, 139764, 261063, 487901, 912607, 1708571, 3200241, 5999508, 11251618, 21116746, 39647006, 74479444, 139971218, 263167645, 494991043
OFFSET
0,3
PROG
(PARI)
T(n, k)=if(n<k||k<0, 0, if(k==0, 1, sum(j=0, min(k, n-k), binomial(k+j, k-j)*T(n-k, j))));
a(n)=sum(k=0, n, T(n-k, k));
vector(66, n, a(n-1))
CROSSREFS
Cf. A092422.
Sequence in context: A328078 A178738 A060013 * A167510 A351359 A191701
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 22 2004
STATUS
approved