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.

A337013 Prime numbers arising in A336817.

Original entry on oeis.org

3, 7, 3, 5, 7, 3, 13, 2, 3, 2, 5, 2, 3, 2, 31, 2, 3, 2, 7, 2, 3, 2, 13, 2, 3, 2, 5, 2, 3, 2, 61, 2, 3, 2, 5, 2, 3, 2, 13, 2, 3, 2, 5, 2, 3, 2, 31, 2, 3, 2, 7, 2, 3, 2, 13, 2, 3, 2, 5, 2, 3, 2, 127, 2, 3, 2, 7, 2, 3, 2, 13, 2, 3, 2, 5, 2, 3, 2, 31, 2, 3, 2, 7
Offset: 1

Views

Author

Rémy Sigrist, Nov 21 2020

Keywords

Comments

This sequence contains large runs of consecutive terms that are repeated later on.

Examples

			a(7) = A336817(7) XOR A336817(8) = 7 XOR 10 = 13.
		

Crossrefs

Programs

  • PARI
    s=0; v=1; for (n=1, 83, s+=2^v; for (w=1, oo, if (!bittest(s, w) && isprime(p=bitxor(v, w)), print1 (p ", "); v=w; break)))

Formula

a(n) = A336817(n) XOR A336817(n+1) (where XOR denotes the bitwise XOR operator).