[go: up one dir, main page]

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!)
A291901 Numbers n such that the sum of sums of elements of subsets of divisors of n is a perfect number (A000396). 0
2, 4, 13, 16, 64, 4096, 65536, 262144, 3145341 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers n such that A229335(n) is in the sequence of perfect numbers, A000396.
Corresponding values of perfect numbers: 6, 28, 28, 496, 8128, 33550336, 8589869056, 137438691328, 33550336, ...
a(10) > 10^7; conjecture: a(10) = 1073741824.
All even superperfect numbers A061652(n) are terms in this sequence.
Primes q of the form 2^(p-2) * (2^p - 1) - 1 where p is a Mersenne exponent (A000043) are terms: 2, 13, ...
LINKS
EXAMPLE
Divisors of 4: {1, 2, 4}; nonempty subsets of divisors of n: {1}, {2}, {4}, {1, 2}, {1, 4}, {2, 4}, {1, 2, 4}; sum of sums of elements of subsets = 1 + 2 + 4 + 3 + 5 + 6 + 7 = 28 (perfect number).
sigma(16) * 2^(tau(16) - 1) = 31 * 16 = 496 (perfect number).
MAPLE
isA000396 := proc(n)
numtheory[sigma](n)=2*n ;
simplify(%) ;
end proc:
for n from 1 do
if isA000396(A229335(n)) then
print(n);
end if;
end do: # R. J. Mathar, Nov 10 2017
MATHEMATICA
Select[Range[2^20], DivisorSigma[1, DivisorSigma[1, #] 2^(DivisorSigma[0, #] - 1)] == 2 (DivisorSigma[1, #] 2^(DivisorSigma[0, #] - 1)) &] (* Michael De Vlieger, Nov 02 2017 *)
PROG
(Magma) [n: n in [1..10^6] | SumOfDivisors(SumOfDivisors(n)* (2^(NumberOfDivisors(n)-1))) eq 2*(SumOfDivisors(n)* (2^(NumberOfDivisors(n)-1)))]
CROSSREFS
Sequence in context: A287684 A033628 A077319 * A018701 A070152 A176126
KEYWORD
nonn,more
AUTHOR
Jaroslav Krizek, Nov 02 2017
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 August 31 19:25 EDT 2024. Contains 375573 sequences. (Running on oeis4.)