login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A272930 a(n) is the least k such that sigma(sigma(k)) = n*k, where sigma(n) is the sum of the divisors of n, or 0 if no such k exists. 7

%I #98 Jan 23 2019 16:18:03

%S 1,2,8,15

%N a(n) is the least k such that sigma(sigma(k)) = n*k, where sigma(n) is the sum of the divisors of n, or 0 if no such k exists.

%C If a(5) is not zero, it exceeds 5*10^11 (see A098223). Likewise for a(17).

%C a(6) to a(16) are 42, 24, 60, 168, 480, 4404480, 2200380, 57120, 217728, 1058148, 7526400. a(18) is 39352320.

%C Is a(n) in fact nonzero for every positive n? - _Franklin T. Adams-Watters_, Jan 22 2019 [who previously conjectured that it is]

%C a(19) to a(26) are 312792480, 1505806848, 341543854080, 83825280, 13460388480, 8530704000, 58350015360, 284430182400. - _Michel Marcus_, May 18 2016

%C From _Michel Marcus_, May 18 2016; Jul 19 2016, Aug 23 2016, Sep 06 2016: (Start)

%C a(17) <= 336421458837032140800;

%C a(27) <= 4641476998878720;

%C a(28) <= 23479734980782080;

%C a(29) <= 4670834235654671884800;

%C a(30) <= 7526652811748265000960;

%C a(31) <= 45781120625942782080;

%C a(32) <= 242094947364010540800;

%C a(33) <= 216462850095065333760000;

%C a(34) <= 2366077977040955880819916800;

%C a(35) <= 8076837429313362044375040000;

%C a(36) <= 2634106558176405916291008921600;

%C a(37) <= 299500004890186577026355605378405509365760000000;

%C a(38) <= 45103591381041833364829469933568000. (End)

%H See the links in A019278. - _Altug Alkan_, May 31 2016 and May 18 2016

%e sigma(8) = 15. sigma(15) = 24 = 3*8. Since this does not work for any value smaller than 8, a(3) = 8.

%p with(numtheory):

%p a:=proc(n) local k :

%p for k while sigma(sigma(k))<>n*k do od : k end: # _Robert FERREOL_, Apr 11 2018

%t Table[SelectFirst[Range[10^2], Nest[DivisorSigma[1, #] &, #, 2] == n # &], {n, 4}] (* _Michael De Vlieger_, May 11 2016, Version 10 *)

%o (PARI) a(n)=my(r=1);while(sigma(sigma(r))!=n*r,r++);r \\ works only if a(n) is not zero.

%Y Cf. A000203 (sigma), A098223, A051027, A019279, A007539, A019278.

%K nonn,more,bref

%O 1,2

%A _Franklin T. Adams-Watters_, May 11 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 09:31 EDT 2024. Contains 371967 sequences. (Running on oeis4.)