cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A183011 (24n - 1)p(n): traces of partition class polynomials, with a(0) = -1.

Original entry on oeis.org

-1, 23, 94, 213, 475, 833, 1573, 2505, 4202, 6450, 10038, 14728, 22099, 31411, 45225, 63184, 88473, 120879, 165935, 222950, 300333, 398376, 528054, 691505, 905625, 1172842, 1517628, 1947470, 2494778, 3172675, 4029276, 5083606, 6403683, 8023113
Offset: 0

Views

Author

Omar E. Pol, Jan 21 2011

Keywords

Comments

a(n) is also Tr(n), the numerator of the finite algebraic formula for the number of partitions of n, if n >= 1. The formula is p(n) = Tr(n)/(24*n - 1), n >= 1. See theorem 1.1 of the Bruinier-Ono paper in the link. For the denominators see A183010.
a(n) is also the coefficient of the second term (the trace) in the n-th Bruinier-Ono "partition polynomial" H_n(x), if n >= 1. See the Bruinier-Ono paper, theorem 1.1 and chapter 5 "Examples". For the coefficients of the 4th terms see A187218. - Omar E. Pol, Jul 10 2011
In the Bruinier-Ono-Sutherland paper (Jan 23 2013) partition polynomials are called "partition class polynomials". See also Sutherland's table of Hpart_n(x) in link section. - Omar E. Pol, Feb 20 2013

Examples

			1. For n = 6, the number of partitions of 6 is 11, so a(6) = (24*6 - 1)*11 = 143*11 = 1573.
2. For n = 1, in the Bruinier-Ono paper, chapter 5, the first "partition polynomial" is H_1(x) = x^3 - 23*x^2 + (3592/23)*x - 419. The coefficient of the second term (the trace) is 23, so a(1) = 23.
G.f. = -1 + 23*x + 94*x^2 + 213*x^3 + 475*x^4 + 833*x^5 + 1573*x^6 + 2505*x^7 + ...
G.f. = -q^-1 + 23*q^23 + 94*q^47 + 213*q^71 + 475*q^95 + 833*q^119 + 1573*q^143 + ...
		

Crossrefs

Positive terms are the partial sums of A183012, also the column 24 of A182729.

Programs

  • Mathematica
    a[ n_] := (24 n - 1) SeriesCoefficient[ 1 / QPochhammer[ x], {x, 0, n}]; (* Michael Somos, Jun 26 2017 *)
  • PARI
    {a(n) = if( n<0, 0, (24*n - 1) * numbpart(n))}; /* Michael Somos, Aug 28 2013 */

Formula

a(n) = A183010(n)*A000041(n).
a(n) = 24*A066186(n) - A000041(n) = A183009(n) - A000041(n) = (A008606(n)-1)*A000041(n).
a(n) = 12M_2(n) - p(n) = 24spt(n) + 12N_2(n) - p(n) = 12*A220909(n) - A000041(n) = 24*A092269(n) + 12*A220908(n) - A000041(n), n >= 1. - Omar E. Pol, Feb 17 2013
G.f.: Sum_{k >= 0} a(k) * q^(24*k - 1) = q * d/dq (1/q * Product_{k > 0} 1 / (1 - q^(24*k))). - Michael Somos, Aug 28 2013