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.

A258257 The number of representations of n as a minimal number of triangular numbers, A000217(n).

Original entry on oeis.org

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

Views

Author

Martin Renner, May 24 2015

Keywords

Examples

			a(5) = 1 since 5 = 1 + 1 + 3 is the only representation as a minimal number of three triangular numbers.
a(16) = 2 since 16 = 1 + 15 = 6 + 10 has two representations as a minimal number of two triangular numbers.
		

Crossrefs

Programs

  • Mathematica
    t[n_] := n (n + 1)/2; a[n_] := Block[{k = 1, t, tt = t /@ Range[ Sqrt[2*n]]}, While[{} == (r = IntegerPartitions[n, {k}, tt]), k++]; Length@r]; Array[a, 100] (* Giovanni Resta, Jun 09 2015 *)