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”).

A027202
a(n) = Sum_{k=0..n-1} T(n,k) * T(n,k+1), with T given by A026714.
1
1, 6, 35, 196, 1041, 5778, 29928, 165372, 847768, 4670704, 23822408, 130996724, 666301327, 3659417070, 18584154238, 101986105620, 517452054522, 2838222123890, 14392322734127, 78915504085490, 400031746789975, 2192959234558576
OFFSET
1,2
MAPLE
A027202 := proc(n)
add( A026714(n, k)*A026714(n, k+1), k=0..n-1) ;
end proc:
seq(A027202(n), n=1..30) ; # R. J. Mathar, Oct 21 2019
CROSSREFS
Sequence in context: A328331 A346318 A009572 * A026934 A171311 A230713
KEYWORD
nonn
EXTENSIONS
Name corrected by Sean A. Irvine, Oct 21 2019
More terms from Ray Chandler, Oct 22 2019
STATUS
approved