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.

A071312 Squarefree numbers k such that the largest prime factor of k is equal to the sum of the other prime factors of k.

Original entry on oeis.org

30, 70, 286, 646, 1798, 3135, 3526, 3570, 6279, 7198, 8855, 8970, 10366, 10626, 10695, 11571, 16095, 16530, 17255, 17391, 20615, 20706, 20735, 20806, 23326, 24738, 24882, 26691, 28083, 31031, 36519, 36890, 38086, 38130, 41151, 41615
Offset: 1

Views

Author

Benoit Cloitre, Jun 11 2002

Keywords

Comments

If k = p(1)*p(2)*...p(r) is in the sequence, where p(r) is the largest prime factor, then p(r) = p(1)+p(2)+...+p(r-1).

Examples

			20706 = 2*3*7*17*29 and 2+3+7+17 = 29 hence 20706 is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[40000], SquareFreeQ[#] && Plus @@ (f = FactorInteger[#][[;;,1]]) == 2 * f[[-1]] &] (* Amiram Eldar, Apr 23 2022 *)
  • PARI
    for(n=2,100000,if(issquarefree(n)*sum(i=1,omega(n)-1, component(component(factor(n),1),i))==vecmax(factor(n,1)),print1(n,",")))