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!)
A227791 Central terms of the triangle in A227550. 3
1, 2, 8, 36, 176, 940, 5568, 37128, 280992, 2410812, 23250080, 249164344, 2934303264, 37617633976, 521009920256, 7748175156240, 123095897716800, 2080205257723740, 37253560076385120, 704703668205036120, 14039778681732928800, 293831851498842784680 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = A074911(2*n,n).
MAPLE
b:= proc(x, y) option remember; `if`(x=0, y!,
b(x-1, y)+b(sort([x, y-1])[]))
end:
a:= n-> b(n$2):
seq(a(n), n=0..26); # Alois P. Heinz, Jul 14 2021
MATHEMATICA
T[n_, 0] := n!; T[n_, n_] := n!;
T[n_, k_] /; 0<k<n := T[n, k] = T[n-1, k-1]+T[n-1, k];
a[n_] := T[2n, n];
Table[a[n], {n, 0, 21}] (* Jean-François Alcover, Nov 03 2022 *)
PROG
(Haskell)
a227791 n = a227550 (2 * n) n
CROSSREFS
Sequence in context: A166229 A109318 A113327 * A245102 A129148 A285672
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Aug 05 2013
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 August 26 13:18 EDT 2024. Contains 375456 sequences. (Running on oeis4.)