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.

A071929 Numbers k such that the sum of exponents of k is equal to the greatest prime factor of k; a(1)=1.

Original entry on oeis.org

1, 4, 12, 18, 27, 80, 120, 180, 200, 270, 300, 405, 448, 450, 500, 672, 675, 750, 1008, 1120, 1125, 1250, 1512, 1568, 1680, 1875, 2268, 2352, 2520, 2800, 3125, 3402, 3528, 3780, 3920, 4200, 5103, 5292, 5488, 5670, 5880, 6300, 7000, 7938, 8232, 8505, 8820
Offset: 1

Views

Author

Jason Earls, Jun 14 2002

Keywords

Examples

			28160 is a term since 28160 = 2^9*5^1*11^1 and 9+1+1 = 11 and Gpf(28160) = 11.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^4], (f = FactorInteger[#])[[-1, 1]] == Plus @@ f[[;;,2]] &] (* Amiram Eldar, Dec 08 2019 *)