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!)
A341224 Primes p such that (p^32 + 1)/2 is prime. 6
3, 163, 181, 191, 229, 251, 839, 971, 1181, 1201, 1489, 1801, 1823, 1847, 1861, 1987, 2069, 2087, 3547, 3691, 3697, 6361, 6637, 6899, 6967, 7793, 7963, 8731, 8737, 10253, 10271, 10613, 10639, 10799, 11981, 12689, 12697, 13697, 13841, 14951, 15299, 16547, 16747 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Expressions of the form m^j + 1 can be factored (e.g., m^3 + 1 = (m + 1)*(m^2 - m + 1)) for any positive integer j except when j is a power of 2, so (p^j + 1)/2 for prime p cannot be prime unless j is a power of 2. A005383, A048161, A176116, A340480, A341210, and this sequence list primes of the form (p^j + 1)/2 for j=2^0=1, j=2^1=2, ..., j=2^5=32, respectively.
LINKS
EXAMPLE
(3^32 + 1)/2 = 926510094425921 is prime, so 3 is a term.
(5^32 + 1)/2 = 11641532182693481445313 = 641*75068993*241931001601, so 5 is not a term.
MAPLE
q:= p-> (q-> q(p) and q((p^32+1)/2))(isprime):
select(q, [$3..20000])[]; # Alois P. Heinz, Feb 07 2021
MATHEMATICA
Select[Range[17000], PrimeQ[#] && PrimeQ[(#^32 + 1)/2] &] (* Amiram Eldar, Feb 07 2021 *)
PROG
(PARI) isok(p) = (p>2) && isprime(p) && isprime((p^32 + 1)/2); \\ Michel Marcus, Feb 07 2021
CROSSREFS
Primes p such that (p^(2^k) + 1)/2 is prime: A005383 (k=0), A048161 (k=1), A176116 (k=2), A340480 (k=3), A341210 (k=4), (this sequence) (k=5).
Cf. A000040.
Sequence in context: A157440 A157559 A157586 * A042439 A364302 A212845
KEYWORD
nonn
AUTHOR
Jon E. Schoenfield, Feb 07 2021
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 September 15 11:45 EDT 2024. Contains 375938 sequences. (Running on oeis4.)