A002866
a(0) = 1; for n > 0, a(n) = 2^(n-1)*n!.
Original entry on oeis.org
1, 1, 4, 24, 192, 1920, 23040, 322560, 5160960, 92897280, 1857945600, 40874803200, 980995276800, 25505877196800, 714164561510400, 21424936845312000, 685597979049984000, 23310331287699456000, 839171926357180416000, 31888533201572855808000, 1275541328062914232320000
Offset: 0
For the shoe lacing: with the notation introduced in A078602 the a(3-1) = 4 "straight" lacings for 3 pairs of eyelets are: 125346, 125436, 134526, 143526. Their mirror images 134256, 143256, 152346, 152436 are not counted.
a(3) = 24 because the 24 rotations of a three-dimensional cube fall into four distinct classes:
(i) the identity, which leaves everything fixed;
(ii) 9 rotations which leave the centers of two faces fixed, comprising rotations of 90, 180 and 270 degrees for each of 3 pairs of faces;
(iii) 6 rotations which leave the centers of two edges fixed, comprising rotations of 180 degrees for each of 6 pairs of edges;
(iv) 8 rotations which leave two vertices fixed, comprising rotations of 120 and 240 degrees for each of 4 pairs of vertices. For an n-cube, rotations can be more complex. For example, in 4 dimensions a rotation can either act in a single plane, such as the x-y plane, while leaving any vectors orthogonal to that plane unchanged, or it can act in two orthogonal planes, performing rotations in both and leaving no vectors fixed. In higher dimensions, there will be room for more planes and more choices as to the number of planes in which a given rotation acts.
- N. Bourbaki, Groupes et alg. de Lie, Chap. 4, 5, 6, p. 257.
- A. P. Prudnikov, Yu. A. Brychkov and O.I. Marichev, "Integrals and Series", Volume 1: "Elementary Functions", Chapter 4: "Finite Sums", New York, Gordon and Breach Science Publishers, 1986-1992, Eq. (4.2.2.26)
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- T. D. Noe, Table of n, a(n) for n = 0..100
- Ofek Lauber Bonomo and Shlomi Reuveni, Occupancy correlations in the asymmetric simple inclusion process, arXiv:1905.02170 [cond-mat.stat-mech], 2019.
- J.-P. Bultel and A. Chouria, J.-G. Luque and O. Mallet, Word symmetric functions and the Redfield-Polya theorem, Accepted to FPSAC 2013, 2013; arXiv:1302.5815 [math.CO], 2013.
- P. J. Cameron, Sequences realized by oligomorphic permutation groups, J. Integ. Seqs. 3 (2000), #00.1.5.
- Greg Egan, Hypercube Mathematical Details, 2007-2008.
- Joël Gay and Vincent Pilaud, The weak order on Weyl posets, arXiv:1804.06572 [math.CO], 2018.
- W. S. Gray and M. Thitsa, System Interconnections and Combinatorial Integer Sequences, in: 2013 45th Southeastern Symposium on System Theory (SSST).
- Guo-Niu Han, Enumeration of Standard Puzzles, 2011. [Cached copy]
- Guo-Niu Han, Enumeration of Standard Puzzles, arXiv:2006.14070 [math.CO], 2020.
- INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 121.
- Victor Meally, Comparison of several sequences given in Motzkin's paper "Sorting numbers for cylinders...", letter to N. J. A. Sloane, N. D.
- T. S. Motzkin, Sorting numbers for cylinders and other classification numbers, in Combinatorics, Proc. Symp. Pure Math. 19, AMS, 1971, pp. 167-176. [Annotated, scanned copy]
- Norihiro Nakashima and Shuhei Tsujie, Enumeration of Flats of the Extended Catalan and Shi Arrangements with Species, arXiv:1904.09748 [math.CO], 2019.
- J.-C. Novelli and J.-Y. Thibon, Hopf Algebras of m-permutations,(m+1)-ary trees, and m-parking functions, arXiv:1403.5962 [math.CO], 2014.
- OEIS Wiki, Sorting numbers.
- Hugo Pfoertner, Counting straight shoe lacings. FORTRAN program and results.
- Robert A. Proctor, Let's Expand Rota's Twelvefold Way For Counting Partitions!, arXiv:math/0606404 [math.CO], 2007.
- N. J. A. Sloane and Thomas Wieder, The Number of Hierarchical Orderings, arXiv:math/0307064 [math.CO], 2003.
- N. J. A. Sloane and Thomas Wieder, The Number of Hierarchical Orderings, Order 21 (2004), 83-89.
- Index to divisibility sequences
- Index entries for sequences related to shoe lacings
- Index entries for related partition-counting sequences
-
See Pfoertner link.
-
[1] cat [2^(n-1)*Factorial(n): n in [1..25]]; // G. C. Greubel, Jun 13 2019
-
A002866 := n-> `if`(n=0,1,2^(n-1)*n!):
with(combstruct); SeqSeqL := [S, {S=Sequence(U,card >= 1), U=Sequence(Z,card >=1)},labeled];
seq(ceil(count(Subset(n))*count(Permutation(n))/2),n=0..17); # Zerinvary Lajos, Oct 16 2006
G(x):=(1-x)/(1-2*x): f[0]:=G(x): for n from 1 to 26 do f[n]:=diff(f[n-1],x) od:x:=0:seq(f[n],n=0..17); # Zerinvary Lajos, Apr 04 2009
-
Join[{1},Table[2^(n-1) n!,{n,25}]] (* Harvey P. Dale, Sep 27 2013 *)
a[n_] := (-1)^n Hypergeometric2F1Regularized[1, -n, 2 - n, 2];
Table[a[n], {n, 0, 20}] (* Peter Luschny, Apr 26 2024 *)
-
a(n)=if(n,n!<<(n-1),1) \\ Charles R Greathouse IV, Jan 13 2012
-
a(n) = if(n == 0, 1, 2^(n-1)*n!);
vector(25, n, a(n-1)) \\ Altug Alkan, Oct 18 2015
-
[1] + [2^(n-1)*factorial(n) for n in (1..25)] # G. C. Greubel, Jun 13 2019
A002674
a(n) = (2n)!/2.
Original entry on oeis.org
1, 12, 360, 20160, 1814400, 239500800, 43589145600, 10461394944000, 3201186852864000, 1216451004088320000, 562000363888803840000, 310224200866619719680000, 201645730563302817792000000, 152444172305856930250752000000, 132626429906095529318154240000000
Offset: 1
a(3) = 360, since 2(3) = 6 has exactly 3 partitions into two parts: (5,1), (4,2), (3,3). Multiplying all the parts in the partitions, we get 5! * 3 = 360. - _Wesley Ivan Hurt_, Jun 03 2013
- A. P. Prudnikov, Yu. A. Brychkov and O.I. Marichev, "Integrals and Series", Volume 1: "Elementary Functions", Chapter 4: "Finite Sums", New York, Gordon and Breach Science Publishers, 1986-1992, Eq. (4.2.2.33)
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- Vincenzo Librandi, Table of n, a(n) for n = 1..100
- Ronald P. Nordgren, Compound Lucas Magic Squares, arXiv:2103.04774 [math.GM], 2021. See Table 2 p. 12.
- H. E. Salzer, Tables of coefficients for obtaining central differences from the derivatives, Journal of Mathematics and Physics (this journal is also called Studies in Applied Mathematics), 42 (1963), 162-165, plus several inserted tables.
- H. E. Salzer, Annotated scanned copy of left side of Table II.
- Eric Weisstein's World of Mathematics, Central Difference.
a(n) =
A090438(n, 2), n >= 1 (first column of (4, 2)-Stirling2 array).
-
[n*Factorial(2*n-1): n in [1..15]]; // Vincenzo Librandi, Aug 23 2013
-
seq((2*k)!/2, k=1..20); # Wesley Ivan Hurt, Aug 22 2013
-
Table[n! Pochhammer[n, n], {n, 0, 10}] (* Geoffrey Critzer, Dec 16 2009 *)
Table[(2 n)! / 2, {n, 1, 15}] (* Vincenzo Librandi, Aug 23 2013 *)
-
a(n) = (2*n)!/2; \\ Indranil Ghosh, Apr 18 2017
A002672
Denominators of central difference coefficients M_{3}^(2n+1).
Original entry on oeis.org
1, 8, 1920, 193536, 154828800, 1167851520, 892705701888000, 1428329123020800, 768472460034048000, 4058540589291090739200, 196433364521688791777280000, 5957759187690780937420800000, 30447485794244997427545243648000000, 341011840895543971188506728857600000
Offset: 1
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
A002675
Numerators of coefficients for central differences M_{4}^(2*n).
Original entry on oeis.org
1, 1, 1, 17, 31, 1, 5461, 257, 73, 1271, 60787, 241, 22369621, 617093, 49981, 16843009, 5726623061, 7957, 91625968981, 61681, 231927781, 50991843607, 499069107643, 4043309297, 1100586419201, 5664905191661, 1672180312771
Offset: 2
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
-
gf := (sinh(2*sqrt(x)) - 2*sinh(sqrt(x)))*sqrt(x):
ser := series(gf, x, 40): seq(numer(coeff(ser,x,n)), n=2..28); # Peter Luschny, Oct 05 2019
A002677
Denominators of coefficients for central differences M_{3}'^(2*n+1).
Original entry on oeis.org
1, 4, 40, 12096, 604800, 760320, 217945728000, 697426329600, 16937496576000, 30964207376793600, 187333454629601280000, 111407096483020800000, 1814811575069725360128000000, 10162944820390462016716800000
Offset: 1
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
-
gf := (sinh(2*sqrt(x)) - 2*sinh(sqrt(x)))/sqrt(x): ser := series(gf, x, 20):
seq(denom(coeff(ser, x, n)), n=1..14); # Peter Luschny, Oct 05 2019
A002673
Numerators of central difference coefficients M_{3}^(2n+1).
Original entry on oeis.org
1, 1, 13, 41, 671, 73, 597871, 7913, 28009, 792451, 170549237, 19397633, 317733228541, 9860686403, 75397891, 170314355593, 2084647712458321, 29327731093, 168856464709124011, 3063310184201, 499338236699611, 535201577273701757, 23571643935246013553
Offset: 1
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
A002197
Numerators of coefficients for numerical integration.
Original entry on oeis.org
1, 17, 367, 27859, 1295803, 5329242827, 25198857127, 11959712166949, 11153239773419941, 31326450596954510807, 3737565567167418110609, 2102602044094540855003573, 189861334343507894443216783
Offset: 0
a(2) = numer(((1-2^1)*(-1)*((1/6)/2)*(9) + (1-2^3)*(1)*((-1/30)/4)*(10) + (1-2^5)*(-1)*((1/42)/6)*(1))/(2*4^2*5!)) so a(2) = 367. - _Johannes W. Meijer_, Jan 27 2009
- H. E. Salzer, Coefficients for mid-interval numerical integration with central differences, Phil. Mag., 36 (1945), 216-218.
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- T. D. Noe, Table of n, a(n) for n=0..100
- H. E. Salzer, Coefficients for mid-interval numerical integration with central differences, Phil. Mag., 36 (1945), 216-218. [Annotated scanned copy]
- T. R. Van Oppolzer, Lehrbuch zur Bahnbestimmung der Kometen und Planeten, Vol. 2, Engelmann, Leipzig, 1880, p. 545.
Factor of the LS1[-2,n] matrix coefficients in
A160487.
-
nmax:=13: for n from 0 to nmax do A008956(n, 0) := 1: A008956(n, n) := (doublefactorial(2*n-1))^2 od: for n from 1 to nmax do for k from 1 to n-1 do A008956(n, k) := (2*n-1)^2*A008956(n-1, k-1) + A008956(n-1, k) od: od: for n from 0 to nmax do Delta(n) := sum((1-2^(2*k1-1)) * (-1)^(k1) * (bernoulli(2*k1)/(2*k1)) * A008956(n, n+1-k1), k1=1..n+1) / (2*4^(n)*(2*n+1)!) end do: a:=n-> numer(Delta(n)): seq(a(n), n=0..nmax-1); # Johannes W. Meijer, Jan 27 2009, revised Sep 21 2012
-
CoefficientList[Series[1/x - 1/Sqrt[x]/ArcSin[Sqrt[x]], {x, 0, 12}], x] // Numerator (* Jean-François Alcover, Jul 05 2011, after Vladeta Jovovic *)
-
a(n):=(sum(binomial(2*n+k-1,2*n-2)*sum((binomial(k+1,j)*sum((2*i-j)^(2*n+j)*binomial(j,i)*(-1)^(n-i),i,0,j/2))/(2^(j-1)*(2*n+j)!),j,1,k+1),k,0,2*n-1))/(2*n-1);
makelist(num(a(n)),n,0,10); /* Vladimir Kruchinin, May 16 2013 */
A002198
Denominators of coefficients for numerical integration.
Original entry on oeis.org
24, 5760, 967680, 464486400, 122624409600, 2678117105664000, 64274810535936000, 149852129706639360000, 669659197233029971968000, 8839501403475995629977600000, 4879404774718749587747635200000
Offset: 0
- H. E. Salzer, Coefficients for mid-interval numerical integration with central differences, Phil. Mag., 36 (1945), 216-218.
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- T. D. Noe, Table of n, a(n) for n = 0..100
- H. E. Salzer, Coefficients for mid-interval numerical integration with central differences, Phil. Mag., 36 (1945), 216-218. [Annotated scanned copy]
- T. R. Van Oppolzer, Lehrbuch zur Bahnbestimmung der Kometen und Planeten, Vol. 2, Engelmann, Leipzig, 1880, p. 545.
Factor of the LS1[ -2,n] matrix coefficients in
A160487.
-
nmax:=10: for n from 0 to nmax do A008956(n, 0) := 1: A008956(n, n) := (doublefactorial(2*n-1))^2 od: for n from 1 to nmax do for k from 1 to n-1 do A008956(n, k) := (2*n-1)^2*A008956(n-1, k-1) + A008956(n-1, k) od: od:
for n from 0 to nmax do Delta(n) := add((1-2^(2*k1-1)) * (-1)^k1 * (bernoulli(2*k1)/(2*k1)) * A008956(n, n+1-k1), k1=1..n+1) / (2*4^(n)*(2*n+1)!) end do: a:=n-> denom (Delta(n)): seq(a(n), n=0..nmax); # Johannes W. Meijer, Jan 27 2009, Revised Sep 21 2012
A002676
Denominators of coefficients for central differences M_{4}^(2*n).
Original entry on oeis.org
1, 6, 80, 30240, 1814400, 2661120, 871782912000, 3138418483200, 84687482880000, 170303140572364800, 1124000727777607680000, 724146127139635200000, 12703681025488077520896000000, 76222086152928465125376000000, 1531041037877004667453440000000
Offset: 2
- N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
-
gf := 6 - 8*cosh(sqrt(x)) + 2*cosh(2*sqrt(x)): ser := series(gf, x, 40):
seq(denom(coeff(ser,x,n)), n=2..16); # Peter Luschny, Oct 05 2019
A007346
Order of group generated by perfect shuffles of 2n cards.
Original entry on oeis.org
2, 8, 24, 24, 1920, 7680, 322560, 64, 92897280, 3715891200, 40874803200, 194641920, 25505877196800, 1428329123020800, 21424936845312000, 160, 23310331287699456000, 1678343852714360832000, 31888533201572855808000
Offset: 1
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
- Vincenzo Librandi, Table of n, a(n) for n = 1..200
- Steve Butler, Persi Diaconis and R. L. Graham, The mathematics of the flip and horseshoe shuffles, arXiv:1412.8533 [math.CO], 2014.
- Steve Butler, Persi Diaconis and R. L. Graham, The mathematics of the flip and horseshoe shuffles, The American Mathematical Monthly 123.6 (2016): 542-556.
- P. Diaconis, R. L. Graham and W. M. Kantor, The mathematics of perfect shuffles, Adv. Appl. Math. 4 (2) (1983) 175-196.
- Index entries for sequences related to groups
-
f:=proc(n) local k,i,np;
if n=1 then 2
elif (n mod 2) = 1 then n!*2^(n-1)
elif n=6 then 2^9*3*5
elif n=12 then 2^17*3^3*5*11
elif n=2 then 8
elif (n mod 4)=2 then n!*2^n
else
np:=n; k:=1;
for i while (np mod 2) = 0 do
np:=np/2; k:=k+1; od;
if (n=2^(k-1)) then k*2^k else n!*2^(n-2); fi;
fi;
end;
[seq(f(n),n=1..64)]; # N. J. A. Sloane, Jun 20 2016
-
a[1] = 2; a[2] = 8; a[n_] := With[{m = 2^n*n!}, Which[Mod[n, 4] == 2, If[n == 6, m/6, m], Mod[n, 4] == 1, m/2, Mod[n, 4] == 3, m/2, True, If[n == 2^IntegerExponent[n, 2], 2*n*(IntegerExponent[n, 2] + 1), If[n == 12, m/(2*7!), m/4]]]]; Table[a[n], {n, 1, 19}](* Jean-François Alcover, Feb 17 2012, after Franklin T. Adams-Watters *)
-
A007346(n) = local(M); M=2^n*n!; if(n%4==2, if(n==2, 8, if(n==6, M/6, M)), if(n%4==1, if(n==1, 2, M/2), if(n%4==3, M/2, if(n==2^valuation(n, 2), 2*n*(valuation(n, 2)+1), if(n==12, M/(7!*2), M/4))))) \\ Franklin T. Adams-Watters, Nov 30 2006
Showing 1-10 of 15 results.
Comments