The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A369264 Expansion of (1/x) * Series_Reversion( x * (1-x)^3 / (1+x^2)^3 ). 5
1, 3, 18, 127, 993, 8268, 71888, 645087, 5929527, 55544315, 528319662, 5088941628, 49539243900, 486606281496, 4816930145376, 48005470976271, 481262635723491, 4850084768085465, 49107197378659262, 499298960719688343, 5095861705240094097 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(3*n+3,k) * binomial(4*n-2*k+2,n-2*k).
D-finite with recurrence +18*n*(3*n+2)*(2*n+3)*(3*n+1) *(2355222972296552964811*n -2353391098681877598217) *(n+1)*a(n) +3*n*(10232370941059360726949011*n^5 -6279411058144420889732231*n^4 +26515854213844281466097465*n^3 -21761373746876376187551525*n^2 -12108806260534489559295636*n +3394771165638813123794516)*a(n-1) +2*(-132629080888282243656059365*n^6 +156440924520330612537351287*n^5 -1546737637908414661531599805*n^4 +6858652031514251350543113065*n^3 -10688884261686986291502236950*n^2 +6884443241518652198616376568*n -1531720470240397832109679200)*a(n-2) +16*(-488032865226571716800174339*n^6 +5743512241166673419623793625*n^5 -28798925871340480498482300305*n^4 +76975939990931613139744649055*n^3 -114305622490237072905660442676*n^2 +89044784395613178550071941760*n -28430479725567026023998437760)*a(n-3) +384*(3*n-7) *(3*n-8)*(17416466042177225377415141*n^4 -183745766144088004186571330*n^3 +680994833213916542429809801*n^2 -1015881953145852406207817800*n +470197111913757817462248180)*a(n-4) +9216*(n-4)*(3*n-7)*(3*n-10) *(85246481204976073615097*n -71936955710157680798041)*(3*n-8) *(3*n-11)*a(n-5)=0. - R. J. Mathar, Jan 25 2024
a(n) = (1/(n+1)) * [x^n] ( 1/(1-x)^3 * (1+x^2)^3 )^(n+1). - Seiichi Manyama, Feb 14 2024
MAPLE
A369264 := proc(n)
add(binomial(3*n+3, k) * binomial(4*n-2*k+2, n-2*k), k=0..floor(n/2)) ;
%/(n+1) ;
end proc;
seq(A369264(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/(1+x^2)^3)/x)
(PARI) a(n, s=2, t=3, u=3) = sum(k=0, n\s, binomial(t*(n+1), k)*binomial((u+1)*(n+1)-s*k-2, n-s*k))/(n+1);
CROSSREFS
Sequence in context: A366666 A369940 A264230 * A368079 A120922 A360446
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jan 18 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 May 13 21:51 EDT 2024. Contains 372523 sequences. (Running on oeis4.)