login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A369618 Expansion of (1/x) * Series_Reversion( x / (1/(1-x) + x^2) ). 2
1, 1, 3, 8, 26, 87, 308, 1122, 4196, 15995, 61953, 243091, 964307, 3860820, 15581231, 63318119, 258874412, 1064093055, 4394851631, 18229191263, 75904152261, 317161817092, 1329465389854, 5589012748902, 23558679647629, 99548061405442, 421598837336178 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(n+1,k) * binomial(2*n-3*k,n-2*k).
D-finite with recurrence +(n+2)*(n+1)*a(n) -(n+1)*(13*n-4)*a(n-1) +2*(26*n^2-36*n+1)*a(n-2) +(-61*n^2+219*n-176)*a(n-3) +2*(-26*n^2+78*n-7)*a(n-4) +(235*n-497)*(n-4)*a(n-5) -93*(n-4)*(n-5)*a(n-6)=0. - R. J. Mathar, Jan 28 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x/(1/(1-x)+x^2))/x)
(PARI) a(n) = sum(k=0, n\2, binomial(n+1, k)*binomial(2*n-3*k, n-2*k))/(n+1);
CROSSREFS
Sequence in context: A148811 A148812 A148813 * A148814 A161938 A189177
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 27 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 14 19:51 EDT 2024. Contains 375167 sequences. (Running on oeis4.)