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

A027990
Sum{T(n,k)*T(n,2n-k)}, 0<=k<=n, T given by A027926.
1
1, 2, 7, 21, 65, 194, 573, 1668, 4809, 13745, 39011, 110052, 308857, 862886, 2401195, 6658509, 18406373, 50738918, 139513269, 382731240, 1047768621, 2862908777, 7808872007, 21265115976, 57822787825, 157010774474, 425795804623
OFFSET
0,2
FORMULA
(1/5)[n*F(2n+2) - n*F(2n-2) + 4*F(2n+1) + (-1)^n], F(n)=A000045(n). - Ralf Stephan, May 13 2004
G.f. ( 1-3*x+2*x^2+x^3 ) / ( (1+x)*(x^2-3*x+1)^2 ). - R. J. Mathar, May 22 2013
PROG
(Haskell)
a027990 n = a027990_list !! n
a027990_list = c [1] a000045_list where
c us (v:vs) = (sum $ zipWith (*) us vs) : c (v:us) vs
-- Reinhard Zumkeller, Nov 01 2013
CROSSREFS
Sequence in context: A291411 A159972 A106271 * A037520 A218836 A331722
KEYWORD
nonn
STATUS
approved