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.

A325443 Complement of A325442.

Original entry on oeis.org

3, 6, 7, 9, 12, 15, 19, 21, 24, 25, 27, 30, 31, 33, 35, 39, 42, 43, 45, 48, 51, 54, 55, 57, 60, 63, 66, 67, 69, 71, 73, 75, 78, 79, 81, 84, 87, 91, 93, 96, 97, 99, 102, 103, 105, 108, 111, 114, 115, 117, 120, 121, 123, 127, 129, 132, 135, 138, 139, 141, 143
Offset: 1

Views

Author

Clark Kimberling, May 02 2019

Keywords

Comments

These are the numbers 2x-1 and 3x as x ranges through the numbers x>1 in A325442.

Crossrefs

Programs

  • Mathematica
    a = {1}; Do[AppendTo[a, NestWhile[# + 1 &, Last[a] + 1, Apply[Or,
    Map[MemberQ[a, #] &, Select[Flatten[{(#+1)/2, #/3}],
    IntegerQ]]] &]], {150}]; a          (* A325442 *)
    Complement[Range[Last[a]], a]       (* A325443 *)
    (* Peter J. C. Moses, Apr 25 2019 *)