A069575 Numbers k >= 4 such that k contains the digit 0 in no base b with 2 < b < k.
4, 5, 7, 13, 23, 43, 157, 619
Offset: 1
Programs
-
PARI
isok(n) = {for (b=3, n-1, digs = digits(n, b); for (j=1, #digs, if (digs[j] == 0, return (0)););); return (1);} \\ Michel Marcus, Jul 14 2013
Extensions
Corrected by Larry Reeves (larryr(AT)acm.org), Oct 12 2003
Comments