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!)
A327416 a(n) = A156289(2*n, n). 3
1, 1, 63, 21120, 20585565, 44025570225, 175418438510700, 1169944052730453000, 12110024900113702687125, 183906442861089163922581875, 3923248989041777334572795737575, 113570018319217734510803494872644700, 4337118170117525113961286942555563803500 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
PROG
(SageMath)
@cached_function
def P(m, n):
x = polygen(ZZ)
if n == 0: return x^0
return expand(sum(binomial(m*n, m*k)*P(m, n-k)*x for k in (1..n)))
def A327416(n): return P(2, 2*n).list()[n]//factorial(n)
print([A327416(n) for n in range(13)])
CROSSREFS
Cf. A007820 (m=1), this sequence (m=2), A327417 (m=3), A327418 (m=4).
Associated triangles: A048993 (m=1), A156289 (m=2), A291451 (m=3), A291452 (m=4).
Sequence in context: A349902 A177233 A183482 * A001238 A230183 A183552
KEYWORD
nonn
AUTHOR
Peter Luschny, Sep 14 2019
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 20 03:40 EDT 2024. Contains 372703 sequences. (Running on oeis4.)