OFFSET
1,1
COMMENTS
From Bernard Schott, Jul 14 2022: (Start)
Conjecture 1: lim_{n->oo} a(2n+1)/a(2n-1) = 100.
Conjecture 2: lim_{n->oo} a(2n+2)/a(2n) = 81.
These conjectures are the same as for A353735. (End)
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..1002
EXAMPLE
There are five 1-digit terms in A353007: 0, 2, 4, 6, 8. Thus, a(1) = 5.
PROG
(Python)
def isA353007(n):
digits = list(map(int, str(n)))
return all(digits.count(d)%2 != d%2 for d in set(digits))
def a(n):
start = 0 if n == 1 else 10**(n-1)
return sum(1 for i in range(start, 10**n) if isA353007(i))
print([a(n) for n in range(1, 7)]) # Michael S. Branicky, May 06 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michael S. Branicky, May 06 2022
STATUS
approved