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!)
A135758 Catalan numbers at triangular positions: a(n) = A000108(n(n+1)/2). 3
1, 1, 5, 132, 16796, 9694845, 24466267020, 263747951750360, 11959798385860453492, 2257117854077248073253720, 1759414616608818870992479875972, 5632681584560312734993915705849145100 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = C(n(n+1), n(n+1)/2) / [n(n+1)/2 + 1].
MATHEMATICA
With[{nn=100}, Join[{1}, Pick[CatalanNumber[Range[nn]], Array[ IntegerQ[ (Sqrt[1+8#]-1)/2]&, nn]]]] (* Harvey P. Dale, Sep 24 2011 *)
Table[Binomial[n*(n + 1), n*(n + 1)/2]/(1 + Binomial[n + 1, 2]), {n, 0, 10}] (* G. C. Greubel, Nov 07 2016 *)
PROG
(PARI) a(n)=binomial(n*(n+1), n*(n+1)/2)/(n*(n+1)/2+1)
CROSSREFS
Sequence in context: A191409 A003372 A187357 * A152794 A053517 A296191
KEYWORD
nonn,easy
AUTHOR
Paul D. Hanna, Dec 02 2007
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 12:08 EDT 2024. Contains 371912 sequences. (Running on oeis4.)