OFFSET
1,1
COMMENTS
Numbers with an odd digit length cannot be in this sequence.
LINKS
Jake L Lande, Table of n, a(n) for n = 1..1000
EXAMPLE
1010 is even and has two even digits (0,0) and two odd digits (1,1).
MATHEMATICA
eeo[n_] := (id = IntegerDigits[n]; Count[EvenQ@id, True] == Count[OddQ@id, True]); Select[Select[Range[1100], eeo], Mod[#, 2] == 0 &]
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Jake L Lande, Aug 05 2024
STATUS
approved