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.

A325527 Difference sequence of A325463.

Original entry on oeis.org

4, 2, 2, 1, 3, 4, 2, 4, 2, 4, 2, 2, 1, 3, 4, 2, 2, 1, 3, 4, 2, 2, 4, 3, 1, 2, 4, 2, 4, 2, 2, 1, 3, 4, 2, 4, 2, 4, 2, 2, 1, 3, 4, 2, 2, 1, 1, 2, 4, 2, 6, 4, 2, 2, 1, 3, 4, 2, 2, 1, 3, 4, 2, 4, 2, 4, 2, 2, 1, 3, 4, 2, 2, 1, 3, 4, 2, 2, 4, 3, 1, 2, 4, 2, 4, 2
Offset: 1

Views

Author

Clark Kimberling, May 07 2019

Keywords

Comments

See A325417 for a guide to related sequences. Conjecture: every term is in {1,2,3,4,6}; 5 is missing.

Crossrefs

Programs

  • Mathematica
    a = {1}; Do[AppendTo[a, NestWhile[# + 1 &, Last[a] + 1, Apply[Or,
    Map[MemberQ[a, #] &, Select[Flatten[{#/2, (#+1)/3}],
    IntegerQ]]] &]], {20000}]; a;         (* A315462 *)
    c = Complement[Range[Last[a]], a] ;   (* A325463 *)
    Differences[a]  (* A325526 *)
    Differences[c]  (* A325527 *)
    (* Peter J. C. Moses, Apr 23 2019 *)