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!)
A274002 Primes p of the form (q-1)^2+1 that are a divisor of 4^(q-1)-1 where q is prime. 1
5, 17, 257, 65537, 3497539601 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Corresponding values of primes q: 3, 5, 17, 257, 59141, ...
The first 4 known Fermat primes > 3 from A019434 are in this sequence.
Conjecture: also primes p of the form (q-1)^2+1, where q = prime, that are a divisor of (4^k)^(q-1)-1 for all k>=0. Example: 17 = (5-1)^2+1 is a term because 5 is prime and divides (4^k)^(5-1)-1 for all k>=0: 0/17 = 0 (k=0); 255/17 = 15 (k=1); 65535/17 = 3855 (k=2); 16777215/17 = 986895 (k=3); 4294967295/17 = 252645135 (k=4); 1099511627775/17 = 64677154575 (k=5); ...
Subsequence of A274000.
LINKS
EXAMPLE
17 = (5-1)^2+1 is a term because 17 divides 4^(5-1)-1; 255/17 = 15.
PROG
(PARI) listp(nn) = {forprime(p=2, nn, if (isprime(q=(p-1)^2 + 1) && (Mod(4, q)^(p-1) == 1), print1(q, ", ")); ); } \\ Michel Marcus, Jun 08 2016
CROSSREFS
Sequence in context: A222008 A274000 A093428 * A286678 A081479 A335313
KEYWORD
nonn,more
AUTHOR
Jaroslav Krizek, Jun 06 2016
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 May 9 18:00 EDT 2024. Contains 372354 sequences. (Running on oeis4.)