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!)
A135860 a(n) = binomial(n*(n+1), n). 10
1, 2, 15, 220, 4845, 142506, 5245786, 231917400, 11969016345, 706252528630, 46897636623981, 3461014728350400, 281014969393251275, 24894763097057357700, 2389461906843449885700, 247012484980695576597296, 27361230617617949782033713, 3233032526324680287912449550 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k) * binomial(n^2,k). - Paul D. Hanna, Nov 18 2015
a(n) is divisible by (n+1): a(n)/(n+1) = A135861(n).
a(n) is divisible by (n^2+1): a(n)/(n^2+1) = A135862(n).
a(n) = binomial(2*A000217(n),n). - Arkadiusz Wesolowski, Jul 18 2012
a(n) = [x^n] 1/(1 - x)^(n^2+1). - Ilya Gutkovskiy, Oct 03 2017
a(n) ~ exp(n + 1/2) * n^(n - 1/2) / sqrt(2*Pi). - Vaclav Kotesovec, Feb 08 2019
a(p) == p + 1 ( mod p^4 ) for prime p >= 5 and a(2*p) == (4*p + 1)*(2*p + 1) ( mod p^4 ) for all prime p. Apply Mestrovic, equation 37. - Peter Bala, Feb 27 2020
a(n) = ((n^2 + n)!)/((n^2)! * n!). - Peter Luschny, Feb 27 2020
MATHEMATICA
Table[Binomial[n^2 + n, n], {n, 0, 16}] (* Arkadiusz Wesolowski, Jul 18 2012 *)
PROG
(PARI) a(n)=binomial(n*(n+1), n)
for(n=0, 15, print1(a(n), ", "))
(PARI) a(n)=sum(k=0, n, binomial(n, k)*binomial(n^2, k))
for(n=0, 15, print1(a(n), ", "))
(Magma) [Binomial(n*(n+1), n): n in [0..30]]; // G. C. Greubel, Feb 20 2022
(Sage) [binomial(n*(n+1), n) for n in (0..30)] # G. C. Greubel, Feb 20 2022
CROSSREFS
Sequence in context: A298692 A361617 A132493 * A178533 A087962 A140054
KEYWORD
easy,nonn
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 September 3 02:34 EDT 2024. Contains 375649 sequences. (Running on oeis4.)