OFFSET
1,3
COMMENTS
This is the lexicographically earliest sequence of distinct nonnegative terms with this property and also a permutation of the nonnegative integers.
LINKS
EXAMPLE
a(1) * a(2) = 0 * 1 = 0 (no odd digit is present);
a(2) * a(3) = 1 * 2 = 2 (no odd digit is present);
a(3) * a(4) = 2 * 3 = 6 (no odd digit is present);
a(4) * a(5) = 3 * 8 = 24 (no odd digit is present); etc.
MATHEMATICA
Block[{a = {0}}, Do[Block[{k = 1}, While[Nand[FreeQ[a, k], NoneTrue[IntegerDigits@ Total[a[[-1]]*k], OddQ]], k++]; AppendTo[a, k]], {i, 2, 79}]; a] (* Michael De Vlieger, Nov 12 2020 *)
CROSSREFS
KEYWORD
AUTHOR
Eric Angelini and Carole Dubois, Nov 11 2020
STATUS
approved