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.

A051005 PartitionsQ[ A035359 ], i.e., prime values of PartitionsQ.

Original entry on oeis.org

2, 2, 3, 5, 89, 29927, 444793, 602644050950309, 5907806880101973271193081, 442874899733097781915111718440153
Offset: 1

Views

Author

Keywords

Comments

The next term is known (see A035359) but is too big to include here.

Crossrefs

Programs

  • Mathematica
    Reap[For[n = 1, n <= 2500, n++, If[PrimeQ[q = PartitionsQ[n]], Print["n = ", n, " Q = ", q]; Sow[q]]]][[2, 1]] (* Jean-François Alcover, Oct 19 2012 *)
    Select[PartitionsQ[Range[2500]],PrimeQ] (* Harvey P. Dale, Aug 11 2015 *)