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!)
A215718 Number of permutations on n points admitting a seventh root. 7

%I #17 Oct 11 2017 00:36:45

%S 1,1,2,6,24,120,720,4320,34560,311040,3110400,34214400,410572800,

%T 5337446400,69386803200,1040802048000,16652832768000,283098157056000,

%U 5095766827008000,96819569713152000,1936391394263040000,38727827885260800000,852012213475737600000

%N Number of permutations on n points admitting a seventh root.

%C a(n) is the number of permutations of n points such that for all positive m, the number of (7m)-cycles is a multiple of 7.

%H Eric M. Schmidt, <a href="/A215718/b215718.txt">Table of n, a(n) for n = 0..200</a>

%H H. S. Wilf, <a href="http://www.math.upenn.edu/~wilf/DownldGF.html">Generatingfunctionology</a>, 2nd edn., Academic Press, NY, 1994, p. 148-149, Thms. 4.8.2 and 4.8.3.

%F E.g.f.: (1 - x^7)^(1/7)/(1 - x) * Product_{m>=1} E_7(x^(7m)/(7m)) ), where E_7(x) = 1 + x^7/7! + x^14/14! + ... .

%p with(combinat):

%p b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p add(`if`(irem(j, igcd(i, 7))<>0, 0, (i-1)!^j*

%p multinomial(n, n-i*j, i$j)/j!*b(n-i*j, i-1)), j=0..n/i)))

%p end:

%p a:= n-> b(n$2):

%p seq(a(n), n=0..25); # _Alois P. Heinz_, Sep 08 2014

%t multinomial[n_, k_List] := n!/Times @@ (k!); b[n_, i_] := b[n, i] = If[n == 0, 1, If[i<1, 0, Sum[If[Mod[j, GCD[i, 7]] != 0, 0, (i-1)!^j*multinomial[n, Prepend[Table[i, {j}], n-i*j]]/j!*b[n-i*j, i - 1]], {j, 0, n/i}]]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 25}] (* _Jean-François Alcover_, Oct 21 2016, after _Alois P. Heinz_ *)

%o (PARI)

%o { A215718_list(numterms) = Vec(serlaplace((1 - x^7 + O(x^numterms))^(1/7)/(1-x) * prod(m=1, numterms\7, exp7(x^(7*m)/(7*m), numterms\(7*m)+1)))); }

%o { exp7(y, prec) = subst(serconvol(exp(x + O(x^prec)), 1/(1-x^7) + O(x^prec)), x, y); }

%Y Cf. A003483, A103619, A103620, A215716, A215717.

%Y Column k=7 of A247005.

%K nonn

%O 0,3

%A _Eric M. Schmidt_, Aug 23 2012

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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)