A101516 Antidiagonal sums of symmetric square array A101515 and also equals the binomial transform of a sequence formed from terms of A101514 repeated twice.
1, 2, 4, 8, 17, 38, 91, 232, 632, 1824, 5571, 17892, 60355, 212898, 784416, 3008480, 11997341, 49612426, 212536067, 941213428, 4305049140, 20302469824, 98641434683, 493038167880, 2533414749409, 13366134856170, 72361098996208
Offset: 0
Keywords
Examples
Given A101514 = [1,1,2,7,35,236,2037,21695,277966,4198635,...], the binomial transform of A101514 terms repeated twice returns this sequence: BINOMIAL[1,1,1,1,2,2,7,7,35,35,...] = [1,2,4,8,17,38,91,232,632,1824,...].
Programs
-
PARI
{a(n)=sum(k=0,n,binomial(n,k)* if(k\2==0,1,sum(j=0,k\2-1,binomial(k\2-1,j)^2* sum(i=0,2*j,(-1)^(2*j-i)*binomial(2*j,i)*a(i)))))}
Comments