OFFSET
0,3
COMMENTS
This sequence is a self-inverse permutation of the nonnegative integers.
LINKS
Rémy Sigrist, Table of n, a(n) for n = 0..9999
Rémy Sigrist, Colored scatterplot of the first 10000 terms (where the color is function of the largest digit of n)
Rémy Sigrist, PARI program for A338830
EXAMPLE
For n = 20:
- the numbers with 2 digits and largest digit 2 are: 12, 20, 21 and 22,
- so a(12) = 22,
a(20) = 21,
a(21) = 20,
a(22) = 12.
MATHEMATICA
Block[{a = {}, f, k}, f[x_] := Max@ IntegerDigits@ x; Do[k = f[i]; AppendTo[a, SelectFirst[Range[10^# - 1, 10^(# - 1), -1] &@ Floor[1 + Log10[i]], And[f[#] == k, FreeQ[a, #]] &]], {i, 67}]; a] (* Michael De Vlieger, Nov 13 2020 *)
PROG
(PARI) See Links section.
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Rémy Sigrist, Nov 11 2020
STATUS
approved