login
A259310
Primes of the form: 1 + sigma(n)^4.
3
2, 257, 1297, 614657, 331777, 331777, 160001, 331777, 9834497, 5308417, 8503057, 5308417, 9834497, 65610001, 5308417, 8503057, 40960001, 65610001, 29986577, 384160001, 40960001, 303595777, 1049760001, 65610001, 1944810001, 3782742017, 1944810001, 1049760001
OFFSET
1,1
COMMENTS
These primes are neither sorted nor uniqued. They are listed in the order found in A259308.
FORMULA
a(n) = A259308(A259309(n)).
MAPLE
with(numtheory): A259310:=n->`if`(isprime(1+sigma(n)^4), 1+sigma(n)^4, NULL): seq(A259310(n), n=1..200); # Wesley Ivan Hurt, Jul 09 2015
MATHEMATICA
Select[Table[1 + DivisorSigma[1, n]^4, {n, 10000}], PrimeQ]
Select[Table[Cyclotomic[8, DivisorSigma[1, n]], {n, 10000}], PrimeQ]
PROG
(Magma) [a: n in [1..150] | IsPrime(a) where a is 1 + SumOfDivisors(n)^4]; // Vincenzo Librandi, Jun 24 2015
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Robert Price, Jun 24 2015
STATUS
approved