A134375
a(n) = (n!)^4.
Original entry on oeis.org
1, 1, 16, 1296, 331776, 207360000, 268738560000, 645241282560000, 2642908293365760000, 17340121312772751360000, 173401213127727513600000000, 2538767161403058526617600000000, 52643875858853821607942553600000000, 1503561738404723998944447273369600000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A010050,
A009445,
A134366,
A134367,
A134368,
A134369,
A134371,
A134372,
A134373,
A134374.
-
a:= n-> (n!)^4:
seq(a(n), n=0..20); # Alois P. Heinz, Aug 15 2013
-
Table[((n)!)^(4), {n, 0, 10}]
A134374
a(n) = ((2n+1)!)^2.
Original entry on oeis.org
1, 36, 14400, 25401600, 131681894400, 1593350922240000, 38775788043632640000, 1710012252724199424000000, 126513546505547170185216000000, 14797530453474819213543604224000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A010050,
A009445,
A134366,
A134367,
A134368,
A134369,
A134371,
A134372,
A134373,
A134375,
A334378.
A134369
a(n) = ((2n+1)!)^(n+1).
Original entry on oeis.org
1, 36, 1728000, 645241282560000, 6292383221978976013516800000, 4045146997974190235742848547815424000000000000, 363046466970952735968096996065196818096105852014637875200000000000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A134366,
A134367,
A134368,
A134370,
A134371,
A134374,
A134375.
A134371
a(n) = ((2n)!)^n.
Original entry on oeis.org
1, 2, 576, 373248000, 2642908293365760000, 629238322197897601351680000000000, 12078744213598964456884373878200091017216000000000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A134366,
A134367,
A134368,
A134369,
A134370,
A134374,
A134375.
A134372
a(n) = ((2n)!)^2.
Original entry on oeis.org
1, 4, 576, 518400, 1625702400, 13168189440000, 229442532802560000, 7600054456551997440000, 437763136697395052544000000, 40990389067797283140009984000000, 5919012181389927685417441689600000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A010050,
A134366,
A134367,
A134368,
A134369,
A134371,
A134374,
A134375,
A334379,
A334632.
A134370
a(n) = ((2n+1)!)^(n+2).
Original entry on oeis.org
1, 216, 207360000, 3252016064102400000, 2283380023591730815784976384000000, 161469323688736156802100136913438716723200000000000000, 2260697901194635682690248130915498742378267539496871953338204160000000000000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A134366,
A134367,
A134368,
A134369,
A134371,
A134374,
A134375.
A134373
a(n) = ((2n)!)^3.
Original entry on oeis.org
1, 8, 13824, 373248000, 65548320768000, 47784725839872000000, 109903340320478724096000000, 662559760549147780765974528000000, 9159226129831418921308831875072000000000, 262435789155225791087396177124997988352000000000
Offset: 0
Cf.
A000142,
A001044,
A000442,
A036740,
A010050,
A134366,
A134367,
A134368,
A134369,
A134371,
A134373,
A134374,
A134375.
-
Table[((2n)!)^(3), {n, 0, 10}]
((2*Range[0, 10])!)^3 (* Harvey P. Dale, Jul 25 2016 *)
-
[factorial(2*n)**3 for n in range(0,9)] # Stefano Spezia, Apr 22 2025
A351580
a(n) is the number of multisets of size n-1 consisting of permutations of n elements.
Original entry on oeis.org
1, 2, 21, 2600, 9078630, 1634935320144, 22831938997720867560, 34390564970975286088924022400, 7457911916650283082000186530740981347120, 300682790088737748950725540713718365319268411170195200, 2830053444386286847574443631356044745870287426798365860653876609636480
Offset: 1
Starting with the following men's ranking table of order 3, where row k represents man k's rankings, the 1 in the 2nd position of row 3 means that man #3 ranks woman #2 as his 1st choice.
213
321
213
Step 1: reorder columns so row 1 is in natural order:
123
231
123
Step 2: reorder rows 2 to n so rows are in lexical order:
123
123
231
a(3)=21 because there are 1+2+3+4+5+6 = 21 possibilities for the last two rows in lexical order, with 3!=6 possible permutations for each row.
The 21 tables for a(3) are the following:
123 123 123 123 123 123 123
123 123 123 123 123 123 132
123 132 213 231 312 321 132
.
123 123 123 123 123 123 123
132 132 132 132 213 213 213
213 231 312 321 213 231 312
.
123 123 123 123 123 123 123
213 231 231 231 312 312 321
321 231 312 321 312 321 321
A127488
a(n) = (n^2)!/(2*(n!)).
Original entry on oeis.org
6, 30240, 435891456000, 64630041847212441600000, 258328699159653623241666283438080000000
Offset: 2
Cf.
A000142,
A001044,
A000442,
A036740,
A010050,
A009445,
A134366,
A134367,
A134368,
A134369,
A134371,
A134372,
A134373,
A134374,
A134374
Showing 1-9 of 9 results.
Comments