OFFSET
1,2
EXAMPLE
The 11th odd digit of S is 3 (from 13) and this 3 is present in the 11th term of S (which is 23).
MATHEMATICA
a[1]=1; a[n_]:=a[n]=Block[{k=1}, While[MemberQ[l=Array[a, n-1], k]||FreeQ[IntegerDigits@k, Quiet@Select[Flatten[IntegerDigits/@Join[l, {k}]], OddQ][[n]]], k++]; k]; Array[a, 77] (* Giorgos Kalogeropoulos, May 11 2022 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Eric Angelini and Carole Dubois, May 19 2021
STATUS
approved