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.

A325540 Complement of A325539.

Original entry on oeis.org

3, 5, 8, 9, 13, 14, 15, 20, 21, 23, 25, 32, 33, 35, 37, 38, 39, 45, 49, 50, 53, 55, 56, 57, 59, 61, 63, 68, 69, 73, 74, 80, 81, 83, 85, 86, 87, 89, 92, 93, 95, 97, 103, 104, 105, 109, 110, 117, 121, 122, 125, 128, 129, 131, 133, 134, 135, 140, 141, 143, 145
Offset: 1

Views

Author

Clark Kimberling, May 07 2019

Keywords

Comments

These are the numbers 2x+1 and 3x+2 as x ranges through the numbers x > 1 in A325539.

Crossrefs

Programs

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