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!)
A064391 Triangle T(n,k) with zeroth row {1} and row n for n >= 1 giving number of partitions of n with crank k, for -n <= k <= n. 10
1, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 2, 1, 2, 2, 2, 2, 2, 1, 2, 1, 1, 0, 1, 1, 0, 1, 1, 2, 1, 3, 2, 3, 2, 3, 2, 3, 1, 2, 1, 1, 0, 1, 1, 0, 1, 1, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,56
COMMENTS
For a partition p, let l(p) = largest part of p, w(p) = number of 1's in p, m(p) = number of parts of p larger than w(p). The crank of p is given by l(p) if w(p) = 0, otherwise m(p)-w(p).
n-th row contains 2n+1 terms.
LINKS
G. E. Andrews and F. Garvan, Dyson's crank of a partition, Bull. Amer. Math. Soc., 18 (1988), 167-171.
FORMULA
G.f. for k-th column is Sum(m>=1, (-1)^m*x^(k*m)*(x^((m^2+m)/2)-x^((m^2-m)/2)))/Product(m>=1, 1-x^m). - Vladeta Jovovic, Dec 22 2004
EXAMPLE
{T(20, k), -20 <= k <=20} = {1, 0, 1, 1, 2, 2, 4, 4, 7, 8, 12, 13, 19, 20, 26, 28, 34, 34, 39, 38, 41, 38, 39, 34, 34, 28, 26, 20, 19, 13, 12, 8, 7, 4, 4, 2, 2, 1, 1, 0, 1}.
From Omar E. Pol, Mar 04 2012: (Start)
Triangle begins:
. 1;
. 1, 0, 0;
. 1, 0, 0, 0, 1;
. 1, 0, 0, 1, 0, 0, 1;
. 1, 0, 1, 0, 1, 0, 1, 0, 1;
. 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1;
. 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1;
. 1, 0, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 0, 1;
. 1, 0, 1, 1, 2, 1, 2, 2, 2, 2, 2, 1, 2, 1, 1, 0, 1;
1, 0, 1, 1, 2, 1, 3, 2, 3, 2, 3, 2, 3, 1, 2, 1, 1, 0, 1;
(End)
MATHEMATICA
max = 12; f[k_ /; k < 0] := f[-k]; f[k_] := Sum[(-1)^m*x^(k*m)*(x^((m^2 + m)/2) - x^((m^2 - m)/2)), {m, 1, max}]/Product[1 - x^m, {m, 1, max}]; t = Table[ Series[f[k], {x, 0, max}] // CoefficientList[#, x]&, {k, -(max-2), max-2}] // Transpose; Table[If[n == 2, {1, 0, 0}, Table[t[[n, k]], {k, max-n, max+n-2}]], {n, 1, max-1}] // Flatten (* Jean-François Alcover, Apr 11 2013, after Vladeta Jovovic *)
PROG
(Sage)
for n in (0..9): # computes the sequence as a triangle
a = [p.crank() for p in Partitions(n)]
[a.count(k) for k in (-n..n)] # Peter Luschny, Sep 15 2014
CROSSREFS
Row sums give A000041. - Omar E. Pol, Mar 04 2012
Sequence in context: A128583 A218854 A172303 * A236470 A206589 A086011
KEYWORD
nonn,tabf,nice,easy
AUTHOR
N. J. A. Sloane, Sep 29 2001
EXTENSIONS
More terms from Vladeta Jovovic, Sep 29 2001
STATUS
approved

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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)