The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A074964 Numbers k such that Max ( sigma(x*y) : 1 <= x <= k, 1 <= y <= k ) = sigma(k^2). 4

%I #23 Feb 03 2022 09:32:26

%S 1,2,3,4,6,8,12,18,24,60

%N Numbers k such that Max ( sigma(x*y) : 1 <= x <= k, 1 <= y <= k ) = sigma(k^2).

%C Sequence is probably finite.

%C The next term in the sequence, if it exists, is larger than 40000. - _Stewart Gordon_, Sep 27 2011

%C Conjecture: subsequence of A066522, implying finiteness. - _Reinhard Zumkeller_, Nov 14 2011

%F A074963(a(n)) = A065764(a(n)). - _Reinhard Zumkeller_, Nov 14 2011

%p with(numtheory): s := proc(n) option remember: return sigma(n): end: a:= proc(n) option remember: if(n=0)then return 0: fi: return max(a(n-1),seq(s(x*n),x=1..n)): end: for n from 1 to 100 do if(a(n)=s(n^2))then printf("%d, ", n): end: od: # _Nathaniel Johnston_, Sep 26 2011

%o (Haskell)

%o a074964 n = a074964_list !! (n-1)

%o a074964_list = filter (\x -> a074963 x == a065764 x) [1..]

%o -- _Reinhard Zumkeller_, Nov 14 2011

%o (PARI) isok(k) = vecmax(setbinop((x,y)->sigma(x*y), [1..k])) == sigma(k^2); \\ _Michel Marcus_, Feb 03 2022

%Y Cf. A000203, A066522, A065764, A074963.

%K nonn,more

%O 1,2

%A _Benoit Cloitre_, Oct 05 2002

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 May 20 02:39 EDT 2024. Contains 372703 sequences. (Running on oeis4.)