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!)
A260476 Primes p such that p = 2*phi(sigma((p-1)/2))+ 1. 1
3, 5, 17, 257, 65537, 285121, 1425601, 2380801, 100638721, 8778792961, 184354652161 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The first 5 known Fermat primes from A019434 are in sequence.
LINKS
EXAMPLE
17 = 2*phi(sigma((17-1)/2)+1 = 2*phi(15)+1 = 2*8+1, so 17 is in the sequence.
MATHEMATICA
Select[Prime@ Range@ 1000000, # == 2 EulerPhi[DivisorSigma[1, (# - 1)/2]] + 1 &] (* Michael De Vlieger, Sep 25 2015 *)
PROG
(Magma) [n: n in [3..1000000] | IsPrime(n) and n eq 2 * EulerPhi(SumOfDivisors((n-1) div 2)) + 1]
(PARI) forprime(p=3, 1e8, if((2*eulerphi(sigma((p-1)/2)) + 1) == p, print1(p ", "))) \\ Altug Alkan, Sep 25 2015
CROSSREFS
Sequence in context: A093179 A067387 A050922 * A070592 A254576 A232720
KEYWORD
nonn,more
AUTHOR
Jaroslav Krizek, Sep 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 September 14 13:32 EDT 2024. Contains 375921 sequences. (Running on oeis4.)