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.

A117285 Numbers k for which the cototient k-phi(k) is a pentagonal number.

Original entry on oeis.org

1, 2, 3, 5, 7, 11, 13, 17, 18, 19, 20, 22, 23, 25, 29, 30, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 75, 79, 83, 89, 97, 101, 102, 103, 107, 109, 110, 113, 127, 131, 132, 137, 139, 140, 149, 151, 155, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 203, 211, 223
Offset: 1

Views

Author

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

Keywords

Examples

			30 is in the sequence because 30-phi(30) = 22, which is a pentagonal number.
		

Crossrefs

Programs

  • Mathematica
    pentQ[n_] := n == 0 || IntegerQ[(Sqrt[24*n + 1] + 1)/6]; Select[Range[250], pentQ[# - EulerPhi[#]] &] (* Amiram Eldar, Mar 23 2021 *)
  • PARI
    isok(n) = ispolygonal(n - eulerphi(n), 5); \\ Michel Marcus, Feb 26 2014

Extensions

Offset corrected by Amiram Eldar, Mar 23 2021