The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A218003 Number of degree-n permutations of order a power of 3. 2

%I #12 Jun 17 2018 08:06:48

%S 1,1,1,3,9,21,81,351,1233,46089,434241,2359611,27387801,264333213,

%T 1722161169,16514298711,163094452641,1216239520401,50883607918593,

%U 866931703203699,8473720481213481,166915156382509221,2699805625227141201,28818706120636531023,439756550972215638129,6766483260087819272601,77096822666547068590401,406859605390184444341678251

%N Number of degree-n permutations of order a power of 3.

%C Differs from A053499 first at n=27. - _Alois P. Heinz_, Jan 25 2014

%H Alois P. Heinz, <a href="/A218003/b218003.txt">Table of n, a(n) for n = 0..200</a>

%F E.g.f.: exp( Sum_{n>=0} x^(3^n)/3^n ).

%e E.g.f.: A(x) = 1 + x + x^2/2! + 3*x^3/3! + 9*x^4/4! + 21*x^5/5! + 81*x^6/6! +...

%e where

%e log(A(x)) = x + x^3/3 + x^9/9 + x^27/27 + x^81/81 +...+ x^3^n/3^n +...

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

%p add(mul(n-i, i=1..3^j-1)*a(n-3^j), j=0..ilog[3](n))))

%p end:

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

%o (PARI) {a(n)=n!*polcoeff(exp(sum(k=0,ceil(log(n+1)/log(3)),x^(3^k)/3^k)+x*O(x^n)),n)}

%o for(n=0,30,print1(a(n),", "))

%Y Cf. A005388, A053499.

%K nonn

%O 0,4

%A _Paul D. Hanna_, Oct 17 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 May 21 19:35 EDT 2024. Contains 372738 sequences. (Running on oeis4.)