login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A325426
Complement of A325425.
6
2, 4, 6, 7, 10, 12, 13, 16, 18, 21, 22, 25, 28, 30, 34, 36, 38, 39, 40, 43, 46, 48, 49, 52, 54, 55, 58, 61, 62, 63, 64, 66, 67, 70, 74, 75, 76, 79, 82, 84, 85, 88, 90, 94, 97, 100, 102, 103, 106, 108, 109, 112, 114, 115, 117, 118, 120, 121, 124, 129, 130
OFFSET
1,1
COMMENTS
These are the numbers 2x and floor(3x/2) as x ranges through the numbers x > 1 in A325425.
LINKS
MATHEMATICA
a = {1}; Do[AppendTo[a, NestWhile[# + 1 &, Last[a] + 1, Apply[Or,
Map[MemberQ[a, #] &, Select[Flatten[{#/2,
If[Mod[#, 3] == 0, (2 #)/3, 0] + If[Mod[#, 3] == 1, 1/3 (1 + 2 #), 0]}],
IntegerQ || # == 0]]] &]], {150}]; a (* A325425 *)
Complement[Range[Last[a]], a]; (* A325426 *)
(* - Peter J. C. Moses, Apr 25 2019 *)
CROSSREFS
Sequence in context: A026144 A353072 A286047 * A227090 A047510 A189030
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Apr 27 2019
STATUS
approved