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.

A366470 a(n) = A364054(n-1) mod prime(n-1).

Original entry on oeis.org

1, 0, 1, 4, 4, 2, 2, 0, 15, 3, 1, 26, 26, 24, 24, 18, 18, 16, 16, 12, 12, 6, 81, 81, 73, 73, 71, 63, 57, 57, 29, 29, 23, 23, 13, 13, 1, 158, 154, 154, 148, 148, 138, 138, 134, 134, 122, 122, 118, 118, 114, 114, 112, 112, 106, 106, 100, 100, 94, 94, 92
Offset: 2

Views

Author

N. J. A. Sloane, Oct 21 2023

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 2^20; c[] := False; m[] := 0; j = 1; c[0] = c[1] = True;
      Monitor[Do[p = Prime[n - 1]; r = Mod[j, p];
        While[Set[k, p m[p] + r ]; c[k], m[p]++];
        Set[{a[n - 1], c[k], j}, {r, True, k}], {n, 2, nn + 1}], n];
    Array[a, nn] (* Michael De Vlieger, Oct 27 2023 *)
  • Python
    from itertools import count, islice
    from sympy import nextprime
    def A366470_gen(): # generator of terms
        a, aset, p = 1, {0,1}, 2
        while True:
            yield a
            for b in count(a,p):
                if b not in aset:
                    aset.add(b)
                    a = b%(p:=nextprime(p))
                    break
    A366470_list = list(islice(A366470_gen(),30)) # Chai Wah Wu, Oct 22 2023

Formula

A364054(n) = A366475(n)*prime(n-1) + a(n) for n > 1. - Michael De Vlieger, Mar 06 2024