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.

A058984 Number of partitions of n in which number of parts is not 2.

Original entry on oeis.org

1, 1, 1, 2, 3, 5, 8, 12, 18, 26, 37, 51, 71, 95, 128, 169, 223, 289, 376, 481, 617, 782, 991, 1244, 1563, 1946, 2423, 2997, 3704, 4551, 5589, 6827, 8333, 10127, 12293, 14866, 17959, 21619, 25996, 31166, 37318, 44563, 53153, 63240, 75153
Offset: 0

Views

Author

N. J. A. Sloane, Jan 16 2001

Keywords

Comments

Number of star-like trees (trees of diameter <= 4) with n edges. Picture of the 12 star-like trees of 7 edges at Bomfim's link. - Washington Bomfim, Feb 13 2011
Number of trees with n edges and at most one node of degree > 2. - Gabriel Burns, Nov 01 2016

Crossrefs

Cf. A000041.

Programs

  • Maple
    seq(combinat:-numbpart(n) - floor(n/2), n=0..50); # Robert Israel, Nov 07 2016
  • Mathematica
    f[n_] := PartitionsP@ n - Floor[n/2]; Array[f, 45, 0]
  • PARI
    a(n) = numbpart(n) - n\2; \\ Michel Marcus, Nov 01 2016

Formula

a(n) = p(n) - floor(n/2), where p(n) = number of partitions of n = A000041(n).