login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A279011
Numbers k such that phi(6k) is either phi(6k-2) or phi(6k+2), where phi is Euler's totient function A000010.
3
1, 2, 12, 152, 222, 268, 362, 432, 723, 992, 1517, 2532, 2567, 8472, 9718, 9858, 13498, 15738, 34732, 35898, 44092, 60363, 69312, 75168, 75973, 82752, 87208, 88888, 98198, 105852, 114392, 126848, 128672, 135368, 141093, 161268, 221223, 233788, 301513, 328358
OFFSET
1,2
LINKS
Dov Jarden, Recurring Sequences, Riveon Lematematika, Jerusalem, 1966. [Annotated scanned copy] See p. 67.
MATHEMATICA
Select[Range[10^6], Function[k, Or @@ Map[EulerPhi[6 k] == EulerPhi@ # &, 6 k + {-2, 2}]]] (* Michael De Vlieger, Dec 12 2016 *)
PROG
(Magma) [n: n in [1..1000000] | not (EulerPhi(6*n) eq EulerPhi(6*n-2)) eq (EulerPhi(6*n) eq EulerPhi(6*n+2))]; // Vincenzo Librandi, Dec 12 2016
CROSSREFS
Cf. A000010.
Union of A279183 and A279184.
Sequence in context: A375233 A374869 A340026 * A279183 A126777 A126345
KEYWORD
nonn,changed
AUTHOR
N. J. A. Sloane, Dec 10 2016
EXTENSIONS
More terms from Vincenzo Librandi, Dec 12 2016
STATUS
approved