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.

A333100 Even numbers k such that both k and k + 2 are nontotients (A005277).

Original entry on oeis.org

74, 122, 152, 186, 234, 242, 244, 246, 284, 302, 338, 362, 374, 402, 404, 410, 412, 426, 434, 470, 472, 482, 494, 514, 516, 530, 532, 548, 572, 594, 602, 608, 626, 666, 668, 678, 722, 728, 746, 752, 788, 802, 804, 842, 844, 866, 868, 870, 872, 890, 892, 914, 942
Offset: 1

Views

Author

Amiram Eldar, Mar 07 2020

Keywords

Examples

			74 is a term since both 74 and 76 are nontotients.
		

Crossrefs

Programs

  • PARI
    forstep(k=2, 100, 2, if(!istotient(k) && !istotient(k+2), print1(k,", ")))