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!)
A056773 Composite n such that phi(n+4) = phi(n)+4. 1
12, 18, 24, 28, 36, 40, 66, 88, 124, 184, 232, 328, 424, 508, 664, 712, 904, 1048, 1384, 1432, 1528, 1864, 1912, 2008, 2248, 2344, 2586, 2872, 3352, 3448, 3544, 3928, 4072, 4744, 5128, 5224, 5272, 5464, 5752, 5944, 6088, 6472, 7288, 7624, 8104, 8152, 8248 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Are all terms even? - Robert Israel, Apr 28 2020
LINKS
EXAMPLE
24 is in the sequence because 24 is composite and phi(24)+4 = 12 = phi(24+4).
MAPLE
filter:= n -> not isprime(n) and numtheory:-phi(n+4)=numtheory:-phi(n)+4:
select(filter, [$1..10000]); # Robert Israel, Apr 28 2020
MATHEMATICA
Select[Range[9000], CompositeQ[#]&&EulerPhi[#]+4==EulerPhi[#+4]&] (* Harvey P. Dale, Feb 12 2015 *)
PROG
(PARI) is(n)=!isprime(n) && eulerphi(n+4)==eulerphi(n)+4 \\ Charles R Greathouse IV, Apr 28 2020
CROSSREFS
A001838, A015913, A055458. Composites in A056772. Primes in A056772 are A023200.
Sequence in context: A280014 A359929 A162151 * A297925 A341099 A175837
KEYWORD
nonn
AUTHOR
Labos Elemer, Aug 17 2000
EXTENSIONS
Edited by Robert Israel, Apr 28 2020
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)