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!)
A340816 Numbers k for which sigma(k^2)/k^2 reaches a new record, where sigma = A000203. 0
1, 2, 4, 6, 12, 24, 30, 60, 120, 180, 210, 360, 420, 840, 1260, 2520, 4620, 9240, 13860, 27720, 55440, 60060, 120120, 180180, 360360, 720720, 1441440, 1801800, 2042040, 3063060, 6126120, 12252240, 24504480, 30630600, 36756720, 38798760, 58198140, 116396280 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Appears to be almost identical to A308471.
LINKS
EXAMPLE
a(1) = 1 with sigma(1^2)/1^2 = 1.
a(2) = 2 with sigma(2^2)/2^2 = 7/4 > 1.
3 is not in the sequence because sigma(3^2)/3^2 = 13/9 < 7/4.
a(3) = 4 with sigma(4^2)/4^2 = 31/16 > 7/4.
MAPLE
wmax:= 0: R:= NULL:
for n from 1 to 10^6 do
w:= numtheory:-sigma(n^2)/n^2;
if w > wmax then
wmax:= w; R:= R, n;
fi;
od:
R;
MATHEMATICA
DeleteDuplicates[Table[{k, DivisorSigma[1, k^2]/k^2}, {k, 31*10^5}], GreaterEqual[#1[[2]], #2[[2]]]&][[;; , 1]] (* The program generates the first 30 terms of the sequence. To generate more increase the k constant (now set at 31*10^5) but the program may take a long time to run. *) (* Harvey P. Dale, Sep 02 2023 *)
CROSSREFS
Sequence in context: A265719 A126098 A018894 * A168264 A282472 A346016
KEYWORD
nonn
AUTHOR
Robert Israel, Jan 22 2021
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 May 14 01:40 EDT 2024. Contains 372528 sequences. (Running on oeis4.)