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.

A056776 Composite numbers k such that phi(k+12) = phi(k) + 12.

Original entry on oeis.org

45, 65, 80, 99, 112, 117, 135, 171, 176, 196, 207, 209, 272, 279, 294, 304, 310, 312, 369, 406, 429, 477, 496, 531, 592, 656, 657, 711, 752, 801, 909, 927, 944, 981, 1014, 1072, 1078, 1179, 1251, 1359, 1424, 1557, 1611, 1629, 1712, 1719, 1744, 1786, 1791
Offset: 1

Views

Author

Labos Elemer, Aug 17 2000

Keywords

Comments

There are common cases with A054902.

Examples

			656 is a term since it is composite and phi(656) = 320, phi(656+12) = phi(668) = 332 = 320 + 12.
657 is a term since it is composite and phi(657) = 432, phi(657+12) = phi(669) = 444 = 432 + 12.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[1800], CompositeQ[#] && EulerPhi[# + 12] == EulerPhi[#] + 12 &] (* Amiram Eldar, Mar 01 2020 *)