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!)
A266165 Numbers n such that n = 2* phi(sigma((n-1)/2)) + 1. 0
3, 5, 17, 25, 257, 481, 1441, 13825, 65537, 285121, 1425601, 2280961, 2380801, 6690817, 7142401, 11404801, 29719873, 59439745, 100638721, 237758977, 4294967297, 7778073601, 8778792961 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Prime terms are in A260476.
The first 5 known Fermat primes from A019434 are in the sequence.
100638721, 8778792961 and 184354652161 are also terms.
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[Range[10000], # == 2*EulerPhi[DivisorSigma[1, (# - 1)/2] ] + 1 &] (* G. C. Greubel, Dec 22 2015 *)
PROG
(Magma) [n: n in [3..10^7] | n eq 2*EulerPhi(SumOfDivisors((n-1) div 2)) + 1]
(Perl) use ntheory ":all"; for (1..1e7) { say if 2*euler_phi(divisor_sum(($_-1)>>1))+1 == $_ } # Dana Jacobsen, Dec 27 2015
(PARI) is(n)=n%2 && n>2 && 2*eulerphi(sigma((n-1)/2)) + 1 == n \\ Charles R Greathouse IV, Apr 25 2016
CROSSREFS
Sequence in context: A024867 A025111 A253204 * A281622 A256439 A256444
KEYWORD
nonn,more
AUTHOR
Jaroslav Krizek, Dec 22 2015
EXTENSIONS
More terms from Dana Jacobsen, Dec 27 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 April 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)