Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #10 Apr 03 2014 17:04:41
%S 6,84,4368,480700,600805296,262596783764,1379370175283520,
%T 1514334254464231200,24865270306254660391200,
%U 7359958875023243471254188840,30252210715675198558211547346560,27736893389807828057568911670132340158,3170935664621755536830934876837287039957088
%N Binomial((n+1)^2, prime(n)).
%H T. D. Noe, <a href="/A030031/b030031.txt">Table of n, a(n) for n = 1..100</a>
%p A030031:=n->binomial((n+1)^2, ithprime(n)); seq(A030031(n), n=1..20); # _Wesley Ivan Hurt_, Apr 03 2014
%t Table[Binomial[(n + 1)^2, Prime[n]], {n, 20}] (* _T. D. Noe_, Apr 03 2014 *)
%K nonn
%O 1,1
%A _N. J. A. Sloane_