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.

A194230 Least k such that the sum of the distinct prime divisors of k equals m^n for some m > 1.

Original entry on oeis.org

2, 14, 15, 39, 87, 183, 2071, 1255, 1527, 3063, 28546, 12279, 106327, 49143, 622231, 1113823, 1703767, 1310695, 9961111, 3145719, 29360002, 12582903, 218103418, 50331639, 2046816631, 335544295, 9932108986, 23890747663, 1610612727
Offset: 1

Views

Author

Michel Lagneau, Aug 19 2011

Keywords

Comments

The sequence A063869 gives the least k such that sigma(k)=m^n for some m>1.
In this sequence, except n=2 -> m=3, the program gives m = 2 for n = 1 to 30.
All terms are squarefree. [Charles R Greathouse IV, Aug 19 2011]

Examples

			a(11) = 28546 because the sum of the distinct prime divisors {2, 7, 2039} is 2048 = 2^11.
		

Crossrefs

Programs

  • Maple
    with(numtheory):for n from 1 to 12 do:ii:=0:for k from 1 to 1000000 while(ii=0) do: ii:=0:x:=factorset(k):p1:=sum(x[i],i=1..nops(x)):jj:=0:for m from 2 to 10 while(jj=0) do :if p1=m^n then ii:=1:jj:=1: printf ( "%d %d \n", n, k):else fi:od:od:od:

Formula

a(n)=Min{x : A008472 (x)= m^n} for some m.