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.

A117283 Numbers k for which the cototient k-phi(k) is a cube.

Original entry on oeis.org

1, 2, 3, 5, 7, 11, 12, 13, 14, 16, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 63, 67, 71, 73, 79, 81, 83, 89, 96, 97, 101, 103, 107, 109, 112, 113, 115, 124, 127, 128, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 187, 191, 193, 197, 199, 211, 223, 227
Offset: 1

Views

Author

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

Keywords

Examples

			63 is in the sequence because 63-phi(63) = 27, which is a cube.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[230], IntegerQ[(# - EulerPhi[ # ])^(1/3)] &] (* Stefan Steinerberger, Apr 24 2006 *)
  • PARI
    isok(k) = ispower(k-eulerphi(k), 3); \\ Michel Marcus, Mar 23 2021