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.

A256320 Number of partitions of 4n into exactly 3 parts.

Original entry on oeis.org

0, 1, 5, 12, 21, 33, 48, 65, 85, 108, 133, 161, 192, 225, 261, 300, 341, 385, 432, 481, 533, 588, 645, 705, 768, 833, 901, 972, 1045, 1121, 1200, 1281, 1365, 1452, 1541, 1633, 1728, 1825, 1925, 2028, 2133, 2241, 2352, 2465, 2581, 2700, 2821, 2945, 3072, 3201
Offset: 0

Views

Author

Colin Barker, Mar 24 2015

Keywords

Examples

			For n=2 the 5 partitions of 4*2 = 8 are [1,1,6], [1,2,5], [1,3,4], [2,2,4] and [2,3,3].
		

Crossrefs

Cf. A033428 (6n), A256321 (5n), A256322 (7n).
Cf. A184637.

Programs

  • Mathematica
    Length /@ (Total /@ IntegerPartitions[4 #, {3}] & /@ Range[0, 49]) (* Michael De Vlieger, Mar 24 2015 *)
    CoefficientList[Series[-x (x + 1)^3/((x - 1)^3 (x^2 + x + 1)), {x, 0, 49}], x] (* or *)
    Table[2 (6 n^2 + Cos[(2 Pi n)/3] - 1)/9, {n, 0, 49}] (* Michael De Vlieger, Jun 06 2016 *)
  • PARI
    concat(0, vector(40, n, k=0; forpart(p=4*n, k++, , [3,3]); k))
    
  • PARI
    concat(0, Vec(-x*(x+1)^3/((x-1)^3*(x^2+x+1)) + O(x^100)))

Formula

a(n) = A184637(n) for n > 2.
a(n) = 2*a(n-1)-a(n-2)+a(n-3)-2*a(n-4)+a(n-5) for n>4.
G.f.: -x*(x+1)^3 / ((x-1)^3*(x^2+x+1)).
a(n) = 2*(6*n^2+cos((2*Pi*n)/3)-1)/9. - Colin Barker, Jun 06 2016