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!)
A103176 Let p = prime(sigma(n)) and q = prime(phi(n)), then p is in the sequence if p-q = 6. 1
13, 19, 43, 113, 463, 619, 863, 1789, 2273, 2383, 4519, 4789, 4937, 5443, 5507, 5653, 8237, 10459, 13007, 13697, 16063, 16453, 17389, 18313, 18919, 20903, 21193, 21319, 21383, 23567, 24109, 25309, 26267, 27947, 28283, 29573, 30559, 31183, 31517 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Conjecture: In all cases sigma(n)-phi(n)=2, i.e., n is prime.
Proof: Suppose n is composite. Then sigma(n) > n + sqrt(n) and phi(n) <= n - sqrt(n) and so prime(sigma(n)) - prime(phi(n)) >= sigma(n) - phi(n) > 2*sqrt(n) > 6 for n > 9. - Charles R Greathouse IV, May 15 2013
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
n=3719, sigma(n)=3720, phi(n)=3718, a(n)=p(sigma(n))=34847.
MATHEMATICA
Do[g=n; a=Prime[u=DivisorSigma[1, n]]; b=Prime[w=EulerPhi[n]]; s=a-b; If[Equal[s, 6], Print[{n, a, b, u, w, u-w}]; ta=Append[ta, a]], {n, 1, 10000}] ta=Delete[ta, 1]
Prime[DivisorSigma[1, #]]&/@Select[Range[5000], Prime[DivisorSigma[ 1, #]] == Prime[ EulerPhi[#]]+6&] (* Harvey P. Dale, Sep 22 2016 *)
PROG
(PARI) p=2; q=3; forprime(r=5, 1e6, if(r-p==6 && isprime(primepi(q)), print1(r", ")); p=q; q=r) \\ Charles R Greathouse IV, May 15 2013
CROSSREFS
Sequence in context: A106903 A098413 A174152 * A156940 A220162 A248483
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 02 2005
EXTENSIONS
a(1) corrected by Charles R Greathouse IV, May 15 2013
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)