OFFSET
1,3
COMMENTS
There are 65535 terms, with a(65535) = 18364758544493064720 = FEDCBA9876543210_16. - Michael S. Branicky, Feb 05 2024
LINKS
MATHEMATICA
Select[Range[0, 200], Max[Differences[IntegerDigits[#, 16]]]<0&] (* Harvey P. Dale, Oct 23 2022 *)
PROG
(Python)
from itertools import combinations, islice
def agen(): # generator of terms
yield 0
for d in range(1, 17):
yield from sorted(int("".join(c), 16) for c in combinations("FEDCBA9876543210", d) if c[0] != '0')
print(list(islice(agen(), 50))) # Michael S. Branicky, Feb 05 2024
CROSSREFS
KEYWORD
nonn,base,fini,easy
AUTHOR
STATUS
approved