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!)
A178842 a(n) = binomial((n-1)^2, n). 1

%I #17 Sep 08 2022 08:45:54

%S 0,0,4,126,4368,177100,8347680,450978066,27540584512,1878392407320,

%T 141629804643600,11703541346076580,1052134368066259632,

%U 102250849636865496528,10683770265451303535424,1194448077521704400002650,142288257910903254700704000,17993390003427864738863790640

%N a(n) = binomial((n-1)^2, n).

%C Number of ways to place n objects in an (n-1) X (n-1) array (e.g., the number of ways to arrange stars in a flag's field pattern).

%H G. C. Greubel, <a href="/A178842/b178842.txt">Table of n, a(n) for n = 1..250</a>

%t a[n_] := Binomial[(n - 1)^2, n]; Array[a, 18] (* _Robert G. Wilson v_, Jul 25 2010 *)

%o (PARI) vector(20, n, binomial((n-1)^2,n)) \\ _G. C. Greubel_, Jan 21 2019

%o (Magma) [Binomial((n-1)^2,n): n in [1..20]]; // _G. C. Greubel_, Jan 21 2019

%o (Sage) [binomial((n-1)^2,n) for n in (1..20)] # _G. C. Greubel_, Jan 21 2019

%o (GAP) List([1..20], n -> Binomial((n-1)^2, n)); # _G. C. Greubel_, Jan 21 2019

%Y Cf. A014062 (binomial(n^2, n)).

%K nonn

%O 1,3

%A _Thomas Young_, Jun 17 2010

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 16 19:48 EDT 2024. Contains 371754 sequences. (Running on oeis4.)