OFFSET
1,2
COMMENTS
Also odd members of A033307.
As the number of terms approaches infinity, each odd term appears equally often. - Robert G. Wilson v, Aug 01 2018
EXAMPLE
The initial (15) terms of A007376 are 1,2,3,4,5,6,7,8,9,1,0,1,1,1,2; omitting the even terms 2,4,6,8,0,2 leaves the first (8) odd terms 1,3,5,7,9,1,1,1: a(1) through a(8).
MATHEMATICA
Select[ Flatten[ IntegerDigits /@ Range@100], OddQ] (* Robert G. Wilson v, Aug 01 2018 *)
PROG
(PARI) search(n) = for(k=1, n, my(d=select(x->x%2, digits(k))); for(m=1, #d, print1(d[m], ", ")))
/* Call the function as follows to generate terms */
search(40) \\ Felix Fröhlich, Aug 01 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Dave Durgin, Jul 18 2018
STATUS
approved