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.

A350318 Totient numbers k such that 7*k is a nontotient.

Original entry on oeis.org

1, 2, 22, 44, 46, 52, 58, 82, 92, 102, 104, 110, 148, 162, 164, 172, 178, 190, 198, 222, 250, 262, 270, 282, 292, 296, 310, 342, 344, 356, 358, 366, 380, 382, 388, 442, 462, 466, 486, 490, 498, 500, 502, 506, 522, 524, 556, 562, 568, 570, 584, 586, 598, 620
Offset: 1

Views

Author

Jianing Song, Dec 24 2021

Keywords

Examples

			44 is a term since 44 = phi(69) = phi(92) = phi(138), but phi(n) = 7*44 = 308 has no solution.
52 is a term since 52 = phi(53) = phi(106), but phi(n) = 7*52 = 364 has no solution.
		

Crossrefs

Totient numbers k such that m*k is a nontotient: A350316 (m=3), A350317 (m=5), this sequence (m=7), A350319 (m=9), A350320 (m=10), A350321 (m=14).

Programs

  • PARI
    isA350318(n) = istotient(n) && !istotient(7*n)