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!)
A240530 a(n) = 4*(2*n)! / (n!)^2. 1
4, 8, 24, 80, 280, 1008, 3696, 13728, 51480, 194480, 739024, 2821728, 10816624, 41602400, 160466400, 620470080, 2404321560, 9334424880, 36300541200, 141381055200, 551386115280, 2153031497760, 8416395854880, 32933722910400, 128990414732400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Apart from first term, the same as A146534. - Arkadiusz Wesolowski, Apr 12 2014
LINKS
M. Pedrazzi and G. Goldoni, Un labirinto cartesiano (A Cartesian Labyrinth), Archimede, Anno XXXVIII, Jan-Mar 1986, p. 41 (in Italian).
FORMULA
G.f.: 4/sqrt(1-4*x).
a(n) = 4*binomial(2*n, n) = 4*A000984(n) = 2*A028329(n).
D-finite with recurrence: n*a(n) - 2*(2*n-1)*a(n-1) = 0 for n > 0.
MAPLE
seq( 4*binomial(2*n, n), n=0..30); # G. C. Greubel, Dec 19 2019
MATHEMATICA
Table[4*(2*n)!/(n!)^2, {n, 0, 40}] (* or *) CoefficientList[Series[4/Sqrt[1 - 4 x], {x, 0, 50}], x]
PROG
(Magma) [4*Binomial (2*n, n): n in [0..30]];
(PARI) vector(31, n, 4*binomial(2*n-2, n-1)) \\ G. C. Greubel, Dec 19 2019
(Sage) [4*binomial(2*n, n) for n in (0..30)] # G. C. Greubel, Dec 19 2019
(GAP) List([0..30], n-> 4*Binomial(2*n, n) ); # G. C. Greubel, Dec 19 2019
CROSSREFS
Sequence in context: A370158 A214201 A265185 * A303882 A008950 A045881
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Apr 12 2014
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)