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!)
A290841 a(n) is the least number k such that the sum of the n-th powers of the proper divisors of k is a prime number. 1
4, 4, 8, 4, 115, 33, 119, 4, 8, 18, 35, 15, 21, 177, 565, 4, 21, 501, 155, 275, 175, 72, 63, 21, 161, 207, 50, 100, 415, 393, 493, 453, 1250, 33, 75, 15, 85, 777, 655, 351, 649, 833, 327, 219, 1727, 123, 57, 15, 21, 357, 183, 1113, 50, 87, 57, 135, 831, 291, 341, 196, 175, 249, 2107, 783, 57, 927, 800, 39, 209 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Corresponding primes are 3, 5, 73, 17, 6439469, 1772291, 411162217, 257, ...
a(n) = 4 if and only if 2^n + 1 is a Fermat prime (A019434).
LINKS
EXAMPLE
a(5) = 115 because 1^5 + 5^5 + 23^5 = 6439469 is prime and 115 is the smallest number with this property.
MATHEMATICA
Table[SelectFirst[Range[10^4], PrimeQ[DivisorSigma[n, #] - #^n] &], {n, 69}] (* Michael De Vlieger, Aug 14 2017 *)
PROG
(PARI) a(n) = {my(k=1); while(!isprime(sigma(k, n)-k^n), k++); k; }
CROSSREFS
Sequence in context: A060457 A339756 A163369 * A321774 A254267 A028266
KEYWORD
nonn
AUTHOR
Altug Alkan, Aug 12 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 April 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)