login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A353007 Nonnegative integers in which any odd digit, if present, occurs an even number of times, and any even digit, if present, occurs an odd number of times. 3
0, 2, 4, 6, 8, 11, 20, 24, 26, 28, 33, 40, 42, 46, 48, 55, 60, 62, 64, 68, 77, 80, 82, 84, 86, 99, 101, 110, 112, 114, 116, 118, 121, 141, 161, 181, 204, 206, 208, 211, 222, 233, 240, 246, 248, 255, 260, 264, 268, 277, 280, 284, 286, 299, 303, 323, 330, 332, 334 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Like the converse of A333369.
LINKS
EXAMPLE
181 is a 3-digit term because it has two 1's and one 8.
MATHEMATICA
q[n_] := AllTrue[Tally @ IntegerDigits[n], OddQ[Plus @@ #] &]; Select[Range[0, 300], q] (* Amiram Eldar, Apr 15 2022 *)
PROG
(PARI) isok(m) = my(d=digits(m), s=Set(d)); for (i=1, #s, if (#select(x->(x==s[i]), d) % 2 == (s[i] % 2), return (0))); return (1); \\ Michel Marcus, Apr 15 2022
(Python)
def ok(n): s = str(n); return all(s.count(d)%2 != int(d)%2 for d in set(s))
print([k for k in range(335) if ok(k)]) # Michael S. Branicky, Apr 15 2022~
CROSSREFS
Cf. A333369.
Sequence in context: A284617 A079972 A164144 * A071241 A247123 A332240
KEYWORD
nonn,base
AUTHOR
Bernard Schott, Apr 15 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)