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

A027210
a(n) = Sum_{k=0..n-3} T(n,k) * T(n,k+3), with T given by A026725.
1
1, 9, 57, 298, 1545, 7126, 34603, 151633, 714481, 3049328, 14131926, 59385159, 272409611, 1133433579, 5163641033, 21341122875, 96751092786, 397978832144, 1797722306693, 7369285976135, 33195299823112, 135723491400062, 610027809595308, 2489247495517382, 11168400384253936
OFFSET
3,2
MAPLE
A027210 := proc(n)
add( A026725(n, k)*A026725(n, k+3), k=0..n-3) ;
end proc: # R. J. Mathar, Oct 21 2019
CROSSREFS
Sequence in context: A231315 A338080 A064838 * A192054 A045720 A014916
KEYWORD
nonn
EXTENSIONS
Name corrected by R. J. Mathar, Oct 21 2019
More terms from Sean A. Irvine, Oct 24 2019
STATUS
approved