OFFSET
0,3
COMMENTS
This sequence is a self-inverse permutation of the nonnegative integers.
We have a fixed point with m digits and sum of digits k whenever A289410(m, k) is odd.
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 sum of digits of n)
Rémy Sigrist, PARI program for A338829
EXAMPLE
For n = 23:
- the numbers with 2 digits and sum of digits 5 are: 14, 23, 32, 41 and 50,
- so a(14) = 50,
a(23) = 41,
a(32) = 32,
a(41) = 23,
a(50) = 14.
MATHEMATICA
Block[{a = {}, f, k}, f[x_] := Total@ 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
