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!)
A358118 a(n) = Sum_{j=0..n} (-1)^j*binomial(2*n - j, j)*c(n - j + 1)^2, where c(n) is the n-th Catalan number. 3
1, 3, 14, 94, 728, 6220, 56960, 549412, 5517746, 57235402, 609632284, 6638455152, 73653980850, 830429715762, 9494320306104, 109882451968812, 1285515149382226, 15184272319785322, 180901975355930990, 2171974459996885630, 26260944994924397048, 319547523490735463404 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: ((1-14*x+x^2)^(1/2)*(x+1)^2*hypergeom([-1/2, 3/2],[1],-16*x/(1-14*x+x^2))-x^3-7*x^2-7*x-1)/(4*x^2). - Mark van Hoeij, Nov 11 2022
MAPLE
c := n -> binomial(2*n, n)/(n + 1):
A358118 := n -> add((-1)^j*binomial(2*n-j, j)*c(n-j+1)^2, j = 0..n):
seq(A358118(n), n = 0..21);
PROG
(Python)
from math import comb
def A358118(n): return sum((-1 if j&1 else 1)*comb((n<<1)-j, j)*(comb(n-j+1<<1, n-j+1)//(n-j+2))**2 for j in range(n+1)) # Chai Wah Wu, Nov 11 2022
CROSSREFS
Sequence in context: A195134 A089462 A088342 * A364629 A074531 A091906
KEYWORD
nonn
AUTHOR
Peter Luschny, Nov 11 2022
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 June 8 09:36 EDT 2024. Contains 373217 sequences. (Running on oeis4.)