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

A027203
a(n) = Sum_{k=0..n-2} T(n,k) * T(n,k+2), with T given by A026714.
1
1, 10, 75, 450, 2814, 15202, 89623, 466252, 2677281, 13691160, 77546684, 393047294, 2209036094, 11140807218, 62325916869, 313402240000, 1748294223916, 8775335427968, 48864101440273, 244988564184682, 1362584143931457
OFFSET
2,2
MAPLE
A027203 := proc(n)
add( A026714(n, k)*A026714(n, k+2), k=0..n-2) ;
end proc:
seq(A027203(n), n=2..30) ; # R. J. Mathar, Oct 21 2019
CROSSREFS
Sequence in context: A283238 A316462 A022734 * A291003 A305784 A053464
KEYWORD
nonn
EXTENSIONS
Name corrected by Sean A. Irvine, Oct 21 2019
More terms from Ray Chandler, Oct 22 2019
STATUS
approved