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.

A001560 Numbers with an even number of partitions.

Original entry on oeis.org

2, 8, 9, 10, 11, 15, 19, 21, 22, 25, 26, 27, 28, 30, 31, 34, 40, 42, 45, 46, 47, 50, 55, 57, 58, 59, 62, 64, 65, 66, 70, 74, 75, 78, 79, 80, 84, 86, 94, 96, 97, 98, 100, 101, 103, 106, 108, 109, 110, 112, 113, 116, 117, 120, 122, 124, 125, 126, 128, 129, 130, 131
Offset: 1

Views

Author

Keywords

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 836.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    f[n_, k_] := Select[Range[250], Mod[PartitionsP[#], n] == k &]; Table[f[2, k], {k, 0, 1}] (* Clark Kimberling, Jan 05 2014 *)
  • PARI
    is(n)=numbpart(n)%2==0 \\ Charles R Greathouse IV, Apr 08 2015