login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A207575
Numbers k such that phi(k) + 2 divides k + 2 and k is not twice a prime.
2
1, 390, 10374, 2283934267736070, 7316037865689066623729670
OFFSET
1,2
COMMENTS
Contains 2 * terms t of A350777 such that (t-3)/phi(t) = 2. - Max Alekseyev, Oct 26 2023
MATHEMATICA
Select[Range[20000000], !PrimeQ[#/2] && Divisible[#+2, EulerPhi[#]+2]&]
PROG
(PARI) for(n=1, 1e5, if((n+2)%(eulerphi(n)+2)==0&&(n%2||!isprime(n/2)), print1(n", "))) \\ Charles R Greathouse IV, Mar 02 2012
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
EXTENSIONS
a(4)-a(5) from Max Alekseyev, Nov 06 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 21 12:44 EDT 2024. Contains 376084 sequences. (Running on oeis4.)