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!)
A074963 Max ( sigma(x*y) : 1<=x<=n, 1<=y<=n ). 3
1, 7, 13, 31, 42, 91, 96, 127, 195, 234, 234, 403, 403, 480, 576, 744, 744, 847, 847, 1170, 1344, 1344, 1344, 1651, 1860, 1860, 1860, 2240, 2240, 2880, 2880, 3048, 3048, 3048, 3048, 4368, 4368, 4368, 4368, 5040, 5040, 5952, 5952, 5952, 6552, 6552, 6552 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Does a(n)=sigma(n^2) for a finite number of values of n (1,2,3,4,6,8,12,18,24,60)? See A074964.
LINKS
MAPLE
A074963 := proc(n)
a := 0 ;
for x from 1 to n do
for y from 1 to x do
a := max(a, numtheory[sigma](x*y)) ;
end do:
end do;
a ;
end proc: # R. J. Mathar, Sep 27 2011
MATHEMATICA
a[n_] := Module[{m = 0}, Do[m = Max[m, DivisorSigma[1, x*y]], {x, 1, n}, {y, 1, x}]; m]; Array[a, 50] (* Jean-François Alcover, Feb 12 2018 *)
PROG
(PARI) a(n)=vecmax(matrix(n, n, x, y, sigma(x*y)))
(Haskell)
a074963 n = maximum [a000203 (x*y) | x <- [1..n], y <- [x..n]]
-- Reinhard Zumkeller, Nov 14 2011
CROSSREFS
Cf. A000203.
Sequence in context: A335794 A331077 A087196 * A283937 A231626 A343302
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Oct 05 2002
STATUS
approved

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)