OFFSET
1,1
COMMENTS
Similar but different sequences are the "Cyclops numbers" A134808 and A032945 and A051022, which are subsequences, except for the 1- and 2-digit terms.
Also, numbers whose decimal representation cannot be split up between any two digits without producing a string with a leading zero (other than "0" itself).
Also, numbers n > 9 such that floor(n/10) is in A011540, i.e., has a digit '0'.
LINKS
MATHEMATICA
Select[Range[10, 700], DigitCount[Floor[#/10], 10, 0]>0&] (* Harvey P. Dale, May 10 2020 *)
PROG
(PARI) is(n)=n>9 && !vecmin(digits(n\10))
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
M. F. Hasler, Dec 28 2014
STATUS
approved