OFFSET
1,2
COMMENTS
There are 11 - 2*k terms of the sequence with k digits, 1 <= k <= 5.
FORMULA
The terms can be described by the following linear equations:
for 1 <= n <= 9, a(n) = n;
for 10 <= n <= 16, a(n) = 11*(n - 9) + 2;
for 17 <= n <= 21, a(n) = 111*(n - 16) + 24;
for 22 <= n <= 24, a(n) = 1111*(n - 21) + 246;
for n = 25, a(n) = 11111*(n - 24) + 2468.
MATHEMATICA
Select[Range[10^5], Or[Length@ # == 1, Union@ Differences@ # == {2}] &@ IntegerDigits@ # &] (* Michael De Vlieger, Aug 15 2017 *)
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Enrique Navarrete, Aug 14 2017
STATUS
approved