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

A360812
Expansion of Sum_{k>=0} ( x / (1 - (k * x)^2) )^k.
0
1, 1, 1, 2, 9, 29, 113, 613, 3033, 17010, 110929, 713249, 5061097, 38762873, 302389553, 2544613578, 22404995001, 203762678941, 1960880744337, 19509713674397, 201306862742217, 2166901479447194, 24018963506471921, 275731857268608673, 3271769647891351705
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (n-2*k)^(2*k) * binomial(n-k-1,k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=0, N, (x/(1-(k*x)^2))^k))
(PARI) a(n) = sum(k=0, n\2, (n-2*k)^(2*k)*binomial(n-k-1, k));
CROSSREFS
Sequence in context: A241774 A183383 A280853 * A268568 A150902 A150903
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 21 2023
STATUS
approved