A325529 Difference sequence of A325465.
4, 1, 1, 2, 3, 5, 4, 2, 1, 3, 2, 1, 1, 2, 4, 2, 2, 1, 3, 3, 3, 2, 1, 3, 3, 5, 1, 3, 2, 2, 2, 2, 1, 3, 3, 3, 2, 4, 2, 1, 3, 2, 1, 3, 3, 3, 2, 1, 3, 2, 1, 3, 2, 2, 2, 3, 3, 2, 1, 3, 4, 2, 2, 1, 3, 3, 3, 2, 4, 2, 1, 3, 2, 1, 3, 4, 2, 2, 1, 3, 3, 3, 2, 4, 3, 3
Offset: 1
Links
- Clark Kimberling, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
a = {1}; Do[AppendTo[a, NestWhile[# + 1 &, Last[a] + 1, Apply[Or, Map[MemberQ[a, #] &, Select[Flatten[{#/2, (#+2)/3}], IntegerQ]]] &]], {20000}]; a; (* A315464 *) c = Complement[Range[Last[a]], a] ; (* A325465 *) Differences[a] (* A325528 *) Differences[c] (* A325529 *) (* Peter J. C. Moses, Apr 23 2019 *)
Comments