OFFSET
1,1
COMMENTS
a(22) = 1021 is the first term which differs from "numbers having at least two digits 0 in their decimal representation" (not in OEIS). It seems that A043490 is a subsequence. - M. F. Hasler, Jun 19 2018
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
a(39) = 1201, containing just 3 trivial palindromes 0, 1 and 2;
1202, also of length = 4, contains exactly 4 palindromes 0, 1, 2 and 202, therefore 1202 is not a term.
PROG
(Haskell)
a262198 n = a262198_list !! (n-1)
a262198_list = [x | x <- [0..], a055642 x /= a262190 x]
(PARI) is(n)=#digits(n)!=A262190(n) \\ M. F. Hasler, Jun 19 2018
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Sep 14 2015
EXTENSIONS
Definition clarified by M. F. Hasler, Jun 19 2018
STATUS
approved