OFFSET
1,2
COMMENTS
From Bernard Schott, Mar 26 2023: (Start)
Previous name was: "Curved numbers: numbers that have only curved digits (0, 2, 3, 5, 6, 8, 9)"; but in fact, the curved numbers form the sequence A072960.
This sequence allows all digits except for 1, 4 and 7. (End)
LINKS
EXAMPLE
From K. D. Bajpai, Sep 07 2014: (Start)
206 is in the sequence because it has only curved digits 2, 0 and 6.
208 is in the sequence because it has only curved digits 2, 0 and 8.
2035689 is the smallest number having all the curved digits.
(End)
MAPLE
N:= 3: S:= {0, 2, 3, 5, 6, 8, 9}: K:= S:
for j from 2 to N do
K:= map(t -> seq(10*t+s, s=S), K);
od:
print( K); # K. D. Bajpai, Sep 07 2014
MATHEMATICA
f[n_] := Block[{id = IntegerDigits[n], curve = {0, 2, 3, 5, 6, 8, 9}}, If[ Union[ Join[id, curve]] == curve, True, False]]; Select[ Range[0, 240], f[ # ] & ]
Select[Range[0, 249], Union[DigitCount[#] * {1, 0, 0, 1, 0, 0, 1, 0, 0, 0}] == {0} &] (* Alonso del Arte, May 23 2014 *)
Select[Range[0, 500], Intersection[IntegerDigits[#], {1, 4, 7}]=={}&] (* K. D. Bajpai, Sep 07 2014 *)
PROG
(Python)
for n in range(10**3):
s = str(n)
if not (s.count('1') + s.count('4') + s.count('7')):
print(n, end=', ') # Derek Orr, Sep 19 2014
(Magma) [n: n in [0..300] | Set(Intseq(n)) subset [0, 2, 3, 5, 6, 8, 9] ]; // Vincenzo Librandi, Sep 19 2014
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Greg Heil (gheil(AT)scn.org), Dec 11 1999
EXTENSIONS
Corrected and extended by Rick L. Shepherd, May 21 2003
Offset corrected by Arkadiusz Wesolowski, Aug 15 2011
Definition clarified by Bernard Schott, Mar 25 2023
STATUS
approved