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!)
A344057 a(n) = (2*n)! / CatalanNumber(n - 1) for n >= 1 and a(0) = 1. 2
1, 2, 24, 360, 8064, 259200, 11404800, 660441600, 48771072000, 4477184409600, 500391198720000, 66920738734080000, 10554356508917760000, 1938789402181632000000, 410402940653807861760000, 99180710658003566592000000, 27141314475238493257728000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A010050(n)/A000108(n-1) for n>=1. - Michel Marcus, May 12 2021
a(n) = 2*n*(2*n-1)*(n-1)!*n! = 2*n^2*(2*n-1)*((n-1)!)^2 for n > 0. a(n) = a(n-1)*n^2*(2*n - 1)/(2*n - 3) for n > 1. - Chai Wah Wu, May 12 2021
MATHEMATICA
a[n_] := (2 n)! / CatalanNumber[n - 1]; a[0] := 1; Table[a[n], {n, 0, 16}]
PROG
(Python)
from math import factorial
def A344057(n):
return 1 if n == 0 else 2*n**2*(2*n-1)*factorial(n-1)**2 # Chai Wah Wu, May 12 2021
CROSSREFS
Sequence in context: A134805 A119702 A126804 * A170913 A090114 A188953
KEYWORD
nonn
AUTHOR
Peter Luschny, May 12 2021
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)