OFFSET
1,2
COMMENTS
The digit zero must be absent of the sequence.
EXAMPLE
The 1st digit of the seq + the 2nd digit = (1 + 9) = 10 (not a palindrome);
the 2nd digit of the seq + the 3rd digit = (9 + 3) = 12 (not a palindrome);
the 3rd digit of the seq + the 4th digit = (3 + 7) = 10 (not a palindrome);
the 4th digit of the seq + the 5th digit = (7 + 5) = 12 (not a palindrome); etc.
MATHEMATICA
q[n_] := n < 10 || !AnyTrue[Plus @@@ Partition[IntegerDigits[n], 2, 1], PalindromeQ]; a[1] = 1; a[n_] := a[n] = Module[{k = 2, t = Array[a, n - 1]}, While[!q[k] || MemberQ[t, k] || PalindromeQ[Mod[a[n - 1], 10] + First[IntegerDigits[k]]], k++]; k]; Array[a, 100] (* Amiram Eldar, Nov 28 2021 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Carole Dubois, Nov 27 2021
STATUS
approved