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”).

A325518
Difference sequence of A325425.
3
2, 2, 3, 1, 2, 3, 1, 2, 2, 1, 3, 1, 2, 1, 2, 2, 1, 1, 2, 2, 4, 1, 2, 1, 2, 3, 1, 2, 3, 1, 2, 1, 5, 3, 1, 2, 1, 1, 4, 1, 2, 1, 2, 3, 1, 2, 2, 1, 1, 2, 1, 2, 1, 2, 3, 1, 2, 3, 1, 2, 3, 3, 3, 1, 2, 1, 1, 1, 3, 1, 2, 1, 2, 3, 1, 2, 2, 4, 1, 2, 1, 2, 3, 1, 2, 2
OFFSET
1,1
COMMENTS
See A325417 for a guide to related sequences. Conjecture: every term is in {1,2,3,4,5,6}.
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]]] &]], {200}]; a ; (* A325425 *)
c = Complement[Range[Last[a]], a] ; (* A325426 *)
Differences[a] (* A325518 *)
Differences[c] (* A325519 *)
(* Peter J. C. Moses, Apr 23 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 06 2019
STATUS
approved