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!)
A278315 Composite numbers k such that sum of proper divisors of k divides 2^k-1. 2
4, 16, 18, 125, 144, 256, 400, 6489, 27559, 42601, 65536, 105800, 110825, 128975, 129600, 145800, 152775, 200025, 208679, 213444, 226033, 298116, 435600, 649800, 761959, 892561, 1076647, 1248961, 1622225, 1851569, 2059175, 2443575, 2668050, 3612672, 3967223, 7890199, 7947833 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
From Robert Israel, Nov 18 2016: (Start)
Contains A001146 except for 2.
Each even term is a square or twice a square.
No odd terms are squares. (End)
LINKS
EXAMPLE
18 is a term because A001065(18) = 21 divides 2^18-1.
MAPLE
select(p -> not(isprime(p)) and 2 &^ p mod (numtheory:-sigma(p) - p) = 1, [$4..10^5]); # Robert Israel, Nov 18 2016
MATHEMATICA
Select[Range[8*10^6], CompositeQ[#]&&PowerMod[2, #, DivisorSigma[1, #]-#] == 1&] (* Harvey P. Dale, Jul 31 2018 *)
PROG
(PARI) is(n)=Mod(2, sigma(n)-n)^n==1 && !isprime(n);
CROSSREFS
Sequence in context: A117102 A077476 A282552 * A175527 A146510 A232524
KEYWORD
nonn
AUTHOR
Altug Alkan, Nov 18 2016
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.)