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.

A339376 Number of partitions of n into an odd number of distinct triangular numbers.

Original entry on oeis.org

0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 1, 0, 1, 0, 2, 0, 1, 1, 0, 1, 1, 1, 0, 3, 0, 1, 1, 2, 0, 1, 2, 1, 3, 0, 2, 1, 2, 1, 1, 2, 2, 3, 1, 1, 3, 2, 0, 4, 3, 2, 3, 2, 2, 2, 3, 2, 4, 2, 3, 2, 3, 4, 4, 4, 1, 5, 4, 2, 3, 5, 3, 6, 4, 2, 6, 4, 3, 5, 6, 5, 5, 5, 5, 5, 4, 5
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 02 2020

Keywords

Examples

			a(28) = 3 because we have [28], [21, 6, 1] and [15, 10, 3].
		

Crossrefs

Programs

  • Mathematica
    nmax = 90; CoefficientList[Series[(1/2) (Product[(1 + x^(k (k + 1)/2)), {k, 1, nmax}] - Product[(1 - x^(k (k + 1)/2)), {k, 1, nmax}]), {x, 0, nmax}], x]

Formula

G.f.: (1/2) * (Product_{k>=1} (1 + x^(k*(k + 1)/2)) - Product_{k>=1} (1 - x^(k*(k + 1)/2))).
a(n) = (A024940(n) - A292518(n)) / 2.