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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A114320 Triangle T(n,k) = number of permutations of n elements with k 2-cycles. 1
1, 1, 1, 1, 3, 3, 15, 6, 3, 75, 30, 15, 435, 225, 45, 15, 3045, 1575, 315, 105, 24465, 12180, 3150, 420, 105, 220185, 109620, 28350, 3780, 945, 2200905, 1100925, 274050, 47250, 4725, 945, 24209955, 12110175, 3014550, 519750, 51975, 10395, 290529855 (list; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

Row n has 1+floor(n/2) terms. Row sums yield the factorials (A000142). Sum(k*T(n,k),k>0)=n!/2 for n>=2. - Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 17 2006

LINKS

Alois P. Heinz, Rows n = 0..200, flattened

FORMULA

E.g.f.: exp((y-1)*x^2/2)/(1-x). More generally, e.g.f. for number of permutations of n elements with k m-cycles is exp((y-1)*x^m/m)/(1-x).

T(n,k) = n!/(2^k*k!) * Sum_{j=0..floor(n/2)-k} (-1/2)^j/j!. - Alois P. Heinz, Nov 30 2011

EXAMPLE

T(3,1) = 3 because we have (1)(23), (12)(3) and (13)(2).

Triangle begins:

1;

1;

1,     1;

3,     3;

15,    6,   3;

75,   30,  15;

435, 225,  45,  15;

MAPLE

G:= exp((y-1)*x^2/2)/(1-x): Gser:= simplify(series(G, x=0, 15)): P[0]:=1: for n from 1 to 12 do P[n]:= n!*coeff(Gser, x^n) od: for n from 0 to 12 do seq(coeff(y*P[n], y^j), j=1..1+floor(n/2)) od;  # yields sequence in triangular form - Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 17 2006

MATHEMATICA

d = Exp[-x^2/2!]/(1 - x); f[list_] := Select[list, # > 0 &]; Flatten[Map[f, Transpose[Table[Range[0, 10]!CoefficientList[Series[x^(2 k)/(2^k k!) d, {x, 0, 10}], x], {k, 0, 5}]]]]  (*Geoffrey Critzer, Nov 29 2011*)

CROSSREFS

Cf. A008290, A000266, A000090, A088436, A000138, A060725, A060726, A086659, A105422, A105114.

Sequence in context: A165405 A179857 A163590 * A160612 A172087 A086116

Adjacent sequences:  A114317 A114318 A114319 * A114321 A114322 A114323

KEYWORD

easy,nonn,tabf

AUTHOR

Vladeta Jovovic (vladeta(AT)eunet.rs), Feb 05 2006

EXTENSIONS

More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), Feb 17 2006

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 16 20:12 EST 2012. Contains 205962 sequences.