cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A117296 Numbers n for which phi(n) is a palindrome.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 23, 24, 30, 46, 67, 69, 89, 92, 115, 134, 138, 178, 184, 223, 230, 233, 263, 276, 283, 289, 293, 295, 301, 321, 381, 387, 411, 428, 441, 446, 466, 472, 508, 526, 535, 548, 566, 578, 586, 590
Offset: 1

Views

Author

Luc Stevens (lms022(AT)yahoo.com), Apr 23 2006

Keywords

Examples

			69 is in the sequence because phi(69)=44 which is a palindrome.
		

Crossrefs

Cf. A002113.

Programs

  • Mathematica
    Select[Range[600],FromDigits[Reverse[IntegerDigits[EulerPhi[ # ]]]]==EulerPhi[ # ] &] (* Stefan Steinerberger, Apr 24 2006 *)
    Select[Range[600],PalindromeQ[EulerPhi[#]]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Apr 21 2020 *)

Extensions

Corrected and extended by Stefan Steinerberger, Apr 24 2006