OFFSET
1,1
COMMENTS
A230093(a(n)) = 1. - Reinhard Zumkeller, Oct 11 2013
REFERENCES
Joshi, V. S. A note on self-numbers. Volume dedicated to the memory of V. Ramaswami Aiyar. Math. Student 39 (1971), 327--328 (1972). MR0330032 (48 #8371)
Makowski, Andrzej. On Kaprekar's "junction numbers''. Math. Student 34 1966 77 (1967). MR0223292 (36 #6340)
Narasinga Rao, A. On a technique for obtaining numbers with a multiplicity of generators. Math. Student 34 1966 79--84 (1967). MR0229573 (37 #5147)
LINKS
Jayanta Basu and Donovan Johnson, Table of n, a(n) for n = 1..10000 (first 1000 terms from Jayanta Basu)
EXAMPLE
100 is a member as 100 = 86 + sum of digits of (86). 101 is not a member since both 91 and 100 generate 101. Again 103 is not a member as 92 and 101 generate 103.
MAPLE
For Maple code see A230093. - N. J. A. Sloane, Oct 11 2013
MATHEMATICA
co[n_] := Count[Range[n - 1], _?(# + Total[IntegerDigits[#]] == n &)]; Select[Range[100], co[#] == 1 &]
Select[Tally[Table[m+Total[IntegerDigits[m]], {m, 100}]], #[[2]]==1&][[All, 1]]// Sort (* Harvey P. Dale, Aug 23 2017 *)
PROG
(Haskell)
a225793 n = a225793_list !! (n-1)
a225793_list = filter ((== 1) . a230093) [1..]
-- Reinhard Zumkeller, Oct 11 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jayanta Basu, Jul 27 2013
STATUS
approved