login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A008307 Table T(n,k) giving number of permutations of [1..n] with order dividing k, read by antidiagonals. 0
1, 1, 1, 1, 2, 1, 1, 4, 1, 1, 1, 10, 3, 2, 1, 1, 26, 9, 4, 1, 1, 1, 76, 21, 16, 1, 2, 1, 1, 232, 81, 56, 1, 6, 1, 1, 1, 764, 351, 256, 25, 18, 1, 2, 1, 1, 2620, 1233, 1072, 145, 66, 1, 4, 1, 1, 1, 9496, 5769, 6224, 505, 396, 1, 16, 3, 2, 1, 1, 35696, 31041, 33616, 1345, 2052, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,5

COMMENTS

Solutions to x^k = 1 in Symm_n.

REFERENCES

L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 257.

FORMULA

T(n+1, k) = Sum_{d|k} (n)_{d-1}*T(n-d+1, k), where (n)_i = n*(n-1)*(n-2)*...*(n-i+1).

Sum_{n >= 0} T(n, k)*t^n/n! = exp( sum_{d|k} t^d/d ).

EXAMPLE

Array begins

1 1 1 1 1 1 ...

1 2 1 2 1 2 ...

1 4 9 4 1 6 ...

1 10 9 16 1 ...

1 26 21 56 25 ...

MATHEMATICA

t[n_ /; n >= 0, k_ /; k >= 0] := t[n, k] = Sum[(n!/(n - d + 1)!)*t[n - d, k], {d, Divisors[k]}]; t[_, _] = 1; Flatten[ Table[ t[n - k, k], {n, 0, 12}, {k, 1, n}]] (* From Jean-François Alcover, Dec 12 2011, after given formula *)

CROSSREFS

Rows give A056595, (more sequences needed!), columns give A000085, A001470, A001472, A052501, A053496-A053505.

Sequence in context: A205553 A178411 A064645 * A192005 A205592 A099238

Adjacent sequences:  A008304 A008305 A008306 * A008308 A008309 A008310

KEYWORD

nonn,tabl,easy,nice

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com).

EXTENSIONS

More terms from Vladeta Jovovic (vladeta(AT)eunet.rs), Apr 13 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 20:26 EST 2012. Contains 205852 sequences.