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.

A280950 Expansion of Product_{k>=0} 1/(1 - x^(3*k*(k+1)/2+1)).

Original entry on oeis.org

1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 9, 11, 11, 12, 13, 15, 15, 16, 17, 19, 20, 22, 24, 26, 27, 29, 31, 33, 34, 37, 40, 43, 45, 48, 51, 54, 56, 60, 63, 67, 70, 76, 80, 84, 87, 93, 97, 102, 106, 113, 118, 125, 130, 138, 143, 151, 157, 166, 172, 181, 189, 200, 207, 217, 225, 237, 245, 257, 267, 280
Offset: 0

Views

Author

Ilya Gutkovskiy, Jan 11 2017

Keywords

Comments

Number of partitions of n into centered triangular numbers (A005448).

Examples

			a(8) = 3 because we have [4, 4], [4, 1, 1, 1, 1] and [1, 1, 1, 1, 1, 1, 1, 1].
		

Crossrefs

Programs

  • Maple
    N:= 100:
    kmax:= floor((sqrt(24*N-15)-3)/6):
    S:= series(mul(1/(1-x^(3*k*(k+1)/2+1)),k=0..kmax),x,N+1):
    seq(coeff(S,x,j),j=0..N); # Robert Israel, Jan 25 2017
  • Mathematica
    nmax = 78; CoefficientList[Series[Product[1/(1 - x^(3 k (k + 1)/2 + 1)), {k, 0, nmax}], {x, 0, nmax}], x]

Formula

G.f.: Product_{k>=0} 1/(1 - x^(3*k*(k+1)/2+1)).