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.

A195666 Numbers whose sum of prime factors is 17.

Original entry on oeis.org

17, 52, 88, 99, 147, 175, 210, 224, 250, 252, 300, 320, 360, 384, 405, 432, 486
Offset: 1

Views

Author

Kausthub Gudipati, Sep 22 2011

Keywords

Comments

Row 17 of A064364.
Prime factors counted with multiplicity. - Harvey P. Dale, Apr 03 2019

Programs

  • Mathematica
    Select[Range[1000], Total[Times @@ Transpose[FactorInteger[#]]] == 17 &] (* T. D. Noe, Sep 22 2011 *)