The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A259309 Numbers n such that 1 + sigma(n)^4 is prime. 3
1, 3, 5, 12, 14, 15, 19, 23, 28, 33, 34, 35, 39, 40, 47, 53, 57, 58, 73, 76, 79, 86, 88, 89, 104, 112, 116, 118, 126, 131, 133, 134, 138, 139, 145, 147, 148, 154, 163, 165, 173, 175, 179, 183, 185, 189, 193, 197, 201, 204, 206, 207, 213, 216, 219, 220, 224 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
with(numtheory): A259309:=n->`if`(isprime(1 + sigma(n)^4), n, NULL): seq(A259309(n), n=1..500); # Wesley Ivan Hurt, Jul 09 2015
MATHEMATICA
Select[ Range[10000], PrimeQ[ 1 + DivisorSigma[1, #]^4] & ]
Select[ Range[10000], PrimeQ[ Cyclotomic[8, DivisorSigma[1, #]]] &]
PROG
(Magma) [n: n in [1..250] | IsPrime(1+SumOfDivisors(n)^4)]; // Vincenzo Librandi, Jun 24 2015
(PARI) is(n)=my(s=sigma(n)); isprime(s^4+1) \\ Charles R Greathouse IV, May 22 2017
CROSSREFS
Sequence in context: A361322 A037221 A182537 * A212061 A287570 A265220
KEYWORD
easy,nonn
AUTHOR
Robert Price, Jun 24 2015
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 June 1 18:02 EDT 2024. Contains 373025 sequences. (Running on oeis4.)