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!)
A369114 Expansion of (1/x) * Series_Reversion( x * ((1-x)^3-x^3) ). 7
1, 3, 15, 92, 630, 4620, 35494, 282015, 2298417, 19108265, 161418543, 1381606044, 11955789440, 104427062460, 919430773992, 8151530382264, 72711166411422, 652075100808960, 5875868463764446, 53175058170610530, 483082193418731280, 4404057834071995110 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(n+k,k) * binomial(4*n+2,n-3*k).
D-finite with recurrence 81*n*(n-1)*(n+1)*a(n) -945*n^2*(n-1)*a(n-1) +441*(n-1)*(3*n^2+9*n-20)*a(n-2) +3*(1039*n^3 -12393*n^2 +37406*n-33232)*a(n-3) -448*(2*n-5) *(4*n-13)*(4*n-11)*a(n-4)=0. - R. J. Mathar, Jan 25 2024
MAPLE
A369114 := proc(n)
add(binomial(n+k, k) * binomial(4*n+2, n-3*k), k=0..floor(n/3)) ;
%/(n+1) ;
end proc;
seq(A369114(n), n=0..70) ; # R. J. Mathar, Jan 25 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serreverse(x*((1-x)^3-x^3))/x)
(PARI) a(n) = sum(k=0, n\3, binomial(n+k, k)*binomial(4*n+2, n-3*k))/(n+1);
CROSSREFS
Cf. A097188.
Sequence in context: A124553 A369623 A366053 * A020108 A323696 A231657
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 13 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 July 14 18:01 EDT 2024. Contains 374322 sequences. (Running on oeis4.)