OFFSET
1,2
COMMENTS
Differs from A044821 first for 1001, which is in this sequence but not in A044821. - R. J. Mathar, Jan 17 2018
EXAMPLE
Base-10 digits of 65536: 6,5,5,3,6, so that 65536 is in the sequence.
MAPLE
read("transforms") :
isA297148 := proc(n)
local dgs, ud;
dgs := convert(n, base, 10) ;
if nops(dgs) < 2 then
return true;
end if;
if 0 in DIFF(dgs) then
true;
else
false;
end if;
end proc:
for n from 1 to 300 do
if isA297148(n) then
printf("%d, ", n) ;
end if;
end do: # R. J. Mathar, Jan 18 2018
MATHEMATICA
a[n_, b_] := Sign[Differences[IntegerDigits[n, b]]]; z = 300;
b = 10; t = Table[a[n, b], {n, 1, 10*z}];
u = Select[Range[z], ! MemberQ[t[[#]], 0] && First[t[[#]]] == 1 &] (* A297146 *)
v = Select[Range[z], ! MemberQ[t[[#]], 0] && First[t[[#]]] == -1 &] (* A297147 *)
Complement[Range[z], Union[u, v]] (* A297148 *)
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Clark Kimberling, Jan 15 2018
STATUS
approved