A360394 Intersection of A026430 and A360392.
3, 5, 8, 10, 12, 14, 16, 18, 21, 23, 26, 28, 30, 33, 35, 37, 39, 41, 44, 46, 48, 50, 52, 54, 57, 59, 61, 63, 65, 68, 70, 72, 75, 77, 80, 82, 84, 86, 88, 90, 93, 95, 98, 100, 102, 105, 107, 109, 111, 113, 116, 118, 120, 123, 125, 128, 130, 132, 134, 136, 138
Offset: 1
Examples
(1) u ^ v = (3, 5, 8, 10, 12, 14, 16, 18, 21, 23, 26, 28, 30, 33, ...) = A360394 (2) u ^ v' = (1, 6, 9, 15, 19, 24, 27, 31, 36, 42, 45, 51, 55, 60, ...) = A360395 (3) u' ^ v = (7, 11, 17, 20, 25, 29, 32, 38, 43, 47, 53, 56, 62, ...) = A360396 (4) u' ^ v' = (2, 4, 13, 22, 34, 40, 49, 58, 64, 76, 85, 94, 106, ...) = A360397
Programs
-
Mathematica
z = 400; u = Accumulate[1 + ThueMorse /@ Range[0, z]]; (* A026430 *) u1 = Complement[Range[Max[u]], u]; (* A356133 *) v = u + 2 ; (* A360392 *) v1 = Complement[Range[Max[v]], v]; (* A360393 *) Intersection[u, v] (* A360394 *) Intersection[u, v1] (* A360395 *) Intersection[u1, v] (* A360396 *) Intersection[u1, v1] (* A360397 *)
Comments