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.

A131930 Numbers k such that the decimal representation of k contains at least one prime factor of k.

Original entry on oeis.org

2, 3, 5, 7, 11, 12, 13, 15, 17, 19, 20, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 35, 36, 37, 39, 41, 42, 43, 45, 47, 50, 52, 53, 55, 59, 61, 62, 63, 65, 67, 70, 71, 72, 73, 75, 77, 79, 82, 83, 85, 89, 92, 93, 95, 97, 101, 102, 103, 105, 107, 109, 110, 112, 113, 115, 120
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 30 2007

Keywords

Comments

Numbers k such that A131929(k) > 0; complement of A050695 including 1.
All primes are terms.

Examples

			55 is a term because 5 | 55.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[2,120],ContainsAny[Rest[FromDigits/@Subsets[IntegerDigits[#]]],First/@FactorInteger[#]]&] (* James C. McMahon, Mar 02 2025 *)