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.

A256226 Number of partitions of 6n into 6 parts.

Original entry on oeis.org

0, 1, 11, 58, 199, 532, 1206, 2432, 4494, 7760, 12692, 19858, 29941, 43752, 62239, 86499, 117788, 157532, 207338, 269005, 344534, 436140, 546261, 677571, 832989, 1015691, 1229120, 1476997, 1763332, 2092435, 2468926, 2897747, 3384171, 3933815, 4552649, 5247008
Offset: 0

Views

Author

Colin Barker, Mar 19 2015

Keywords

Examples

			For n=2, the 11 partitions of 12 are Xs = [7,1,1,1,1,1], [6,2,1,1,1,1], [5,3,1,1,1,1], [4,4,1,1,1,1], [5,2,2,1,1,1], [4,3,2,1,1,1], [3,3,3,1,1,1], [4,2,2,2,1,1], [3,3,2,2,1,1], [3,2,2,2,2,1] and [2,2,2,2,2,2].
		

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[x (3 x^7 + 14 x^6 + 21 x^5 + 21 x^4 + 22 x^3 + 19 x^2 + 7 x + 1) / ((x - 1)^6 (x + 1) (x^4 + x^3 + x^2 + x + 1)), {x, 0, 40}], x] (* Vincenzo Librandi, Mar 20 2015 *)
  • PARI
    concat(0, Vec(x*(3*x^7+14*x^6+21*x^5+21*x^4+22*x^3+19*x^2+7*x+1)/((x-1)^6*(x+1)*(x^4+x^3+x^2+x+1)) + O(x^100)))
    
  • PARI
    concat(0, vector(35, n, k=0; forpart(p=6*n, k++, , [6,6]); k)) \\ Colin Barker, Mar 21 2015

Formula

G.f.: x*(3*x^7+14*x^6+21*x^5+21*x^4+22*x^3+19*x^2+7*x+1) / ((x-1)^6*(x+1)*(x^4+x^3+x^2+x+1)).