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.

A325463 Complement of A325462.

Original entry on oeis.org

2, 6, 8, 10, 11, 14, 18, 20, 24, 26, 30, 32, 34, 35, 38, 42, 44, 46, 47, 50, 54, 56, 58, 62, 65, 66, 68, 72, 74, 78, 80, 82, 83, 86, 90, 92, 96, 98, 102, 104, 106, 107, 110, 114, 116, 118, 119, 120, 122, 126, 128, 134, 138, 140, 142, 143, 146, 150, 152, 154
Offset: 1

Views

Author

Clark Kimberling, May 01 2019

Keywords

Comments

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

Crossrefs

Programs

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