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!)
A267982 a(n) = 4*n*Catalan(n)^2. 1
0, 4, 32, 300, 3136, 35280, 418176, 5153148, 65436800, 851005584, 11284224640, 152054927024, 2076911622912, 28698821320000, 400547241561600, 5639401174441500, 80010548981049600, 1142928467041798800, 16425988397113680000, 237364657887402183600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The series whose terms are the quotients a(n)/A013709(n) (modified (4n+0) Wallis-Lambert-series-1) is convergent to 4*(1-3/Pi). Proof: Both the Wallis-Lambert-series-1=4/Pi-1 and the elliptic Euler-series=1-2/Pi are absolutely convergent series. Thus any linear combination of the terms of these series will be also absolutely convergent to the value of the linear combination of these series - in this case to 4(1-3/Pi). Q.E.D.
LINKS
FORMULA
a(n) = 4*A268085(n).
a(n+1) = a(n)*4*(n+1)*(2*n+1)^2/(n*(n+2)^2) for n > 0. - Chai Wah Wu, Jan 28 2016
EXAMPLE
For n=3, a(3)=300.
MATHEMATICA
Table[CatalanNumber[n]^2 (4 n + 0), {n, 0, 20}]
PROG
(PARI) a(n) = 4*n*(binomial(2*n, n)/(n+1))^2; \\ Michel Marcus, Jan 24 2016
(Magma) [Catalan(n)^2*4*n: n in [0..20]]; // Vincenzo Librandi, Jan 24 2016 *)
(Python)
from __future__ import division
A267982_list, b = [0], 4
for n in range(1, 10**2):
A267982_list.append(b)
b = b*4*(n+1)*(2*n+1)**2//(n*(n+2)**2) # Chai Wah Wu, Jan 28 2016
CROSSREFS
Sequence in context: A256183 A000766 A370099 * A231258 A294592 A197715
KEYWORD
nonn
AUTHOR
Ralf Steiner, Jan 23 2016
EXTENSIONS
More terms from Vincenzo Librandi, Jan 24 2016
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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)