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!)
A344347 Numbers k such that sigma(k)^2 is divisible by k-1. 0
2, 3, 5, 10, 33, 55, 82, 129, 136, 145, 261, 351, 385, 406, 442, 513, 649, 897, 1090, 2241, 4726, 5185, 8650, 13601, 17101, 17641, 18241, 26625, 26937, 29697, 29953, 32896, 34561, 35841, 38417, 44955, 46081, 46593, 51985, 63505, 65703, 66249, 84376, 93313, 97903 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For k=10, sigma(10)^2 / (10-1) = 18^2 / 9 = 324 / 9 = 36.
MATHEMATICA
Select[Range[2, 10^5], Divisible[DivisorSigma[1, #]^2, # - 1] &] (* Amiram Eldar, May 15 2021 *)
PROG
(PARI)
list(nn) = for(n=2, nn, if (sigma(n)^2 % (n-1) == 0, print1(n, ", ")))
list(100000)
CROSSREFS
Sequence in context: A003182 A348260 A363257 * A134294 A154956 A197312
KEYWORD
nonn
AUTHOR
Zdenek Cervenka, May 15 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 29 05:33 EDT 2024. Contains 372921 sequences. (Running on oeis4.)