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!)
A283599 Numbers k that divide sigma(k^2) - 1. 2
1, 2, 3, 5, 6, 7, 11, 13, 17, 18, 19, 20, 23, 29, 30, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 80, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 180, 181, 191, 193, 197, 199, 211, 223, 225, 227, 229, 233, 239, 241, 251, 257, 263, 269 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Union of prime numbers (A000040) and A283744.
LINKS
EXAMPLE
6 is in this sequence because 6 divides sigma(6^2) - 1 = 90.
MAPLE
select(n -> type((numtheory:-sigma(n^2)-1)/n, integer), [$1..1000]); # Robert Israel, Jun 20 2018
MATHEMATICA
Select[Range@ 270, Divisible[DivisorSigma[1, #^2] - 1, #] &] (* Michael De Vlieger, Mar 15 2017 *)
PROG
(Magma) [n: n in [1..200] | Denominator(((SumOfDivisors(n^2))-1)/n) eq 1];
(PARI) for(n=1, 269, if((sigma(n^2) - 1)%n==0, print1(n, ", "))) \\ Indranil Ghosh, Mar 14 2017
CROSSREFS
Sequence in context: A062101 A330597 A352336 * A096530 A299157 A325327
KEYWORD
nonn
AUTHOR
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.)