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!)
A364372 G.f. satisfies A(x) = (1 + x) * (1 - x*A(x)^3). 3
1, 0, -1, 3, -6, 6, 15, -107, 349, -672, 39, 5835, -27654, 75765, -95799, -279129, 2297970, -8377854, 17663640, -996624, -177445221, 888491025, -2551959604, 3337931168, 10407149226, -87719805853, 328682535695, -708428979213, 15252552804, 7616368090377, -38693979668535 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^k * binomial(3*k+1,k) * binomial(3*k+1,n-k) / (3*k+1).
D-finite with recurrence 2*n*(2*n+1)*a(n) +(51*n-26)*(n-1)*a(n-1) +(279*n^2 -931*n +766)*a(n-2) +2*(413*n^2 -2127*n +2728)*a(n-3) +6*(75*n-244) *(3*n-11)*a(n-4) +9*(45*n-179) *(3*n-14)*a(n-5) +63*(3*n-14) *(3*n-17)*a(n-6) +12*(3*n-16) *(3*n-20)*a(n-7)=0. - R. J. Mathar, Jul 25 2023
MAPLE
A364372 := proc(n)
add( (-1)^k*binomial(3*k+1, k) * binomial(3*k+1, n-k)/(3*k+1), k=0..n) ;
end proc:
seq(A364372(n), n=0..80); # R. J. Mathar, Jul 25 2023
PROG
(PARI) a(n) = sum(k=0, n, (-1)^k*binomial(3*k+1, k)*binomial(3*k+1, n-k)/(3*k+1));
CROSSREFS
Cf. A364336.
Sequence in context: A238775 A269525 A341885 * A036252 A103463 A370154
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 20 2023
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 1 14:59 EDT 2024. Contains 372174 sequences. (Running on oeis4.)