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.

A333024 Starts of runs of 7 consecutive even numbers that are all totient numbers (A002202).

Original entry on oeis.org

100, 26734060, 3149734998, 12960114796, 15685683796, 24077884060, 36987943996, 38809984996, 62521251798, 76314338740, 319408651400
Offset: 1

Views

Author

Amiram Eldar, Mar 05 2020

Keywords

Examples

			100 is a term since the 7 even numbers 100, 102, ... 112 are all totient numbers.
		

Crossrefs

Programs

  • PARI
    m = 7; v = vector(m); for(k=1, m, v[k] = istotient(2*k)); for(k = m+1, 1.5e7, if(Set(v) == [1], print1(2*(k-m),", ")); v = concat(v[2..m], istotient(2*k)))

Extensions

a(9)-a(11) from Giovanni Resta, Mar 07 2020