A230094 Numbers that can be expressed as (m + sum of digits of m) in exactly two ways.
Examples
a(1) = 101 = 91 + (9+1) = 100 + (1+0+0); a(10) = 202 = 191 + (1+9+1) = 200 + (2+0+0); a(100) = 1106 = 1093 + (1+0+9+3) = 1102 + (1+1+0+2); a(1000) = 10312 = 10295 + (1+0+2+9+5) = 10304 + (1+0+3+0+4).
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)
- D. R. Kaprekar, Puzzles of the Self-Numbers. 311 Devlali Camp, Devlali, India, 1959.
- D. R. Kaprekar, The Mathematics of the New Self Numbers, Privately Printed, 311 Devlali Camp, Devlali, India, 1963.
- 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
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- Max A. Alekseyev and N. J. A. Sloane, On Kaprekar's Junction Numbers, arXiv:2112.14365, 2021; Journal of Combinatorics and Number Theory 12:3 (2022), 115-155.
- Santanu Bandyopadhyay, Self-Number, Indian Institute of Technology Bombay (Mumbai, India, 2020).
- Santanu Bandyopadhyay, Self-Number, Indian Institute of Technology Bombay (Mumbai, India, 2020). [Local copy]
- David A. Corneth, Examples
- Shyam Sunder Gupta, On Some Marvellous Numbers of Kaprekar, Exploring the Beauty of Fascinating Numbers, Springer (2025) Ch. 9, 275-315.
- D. R. Kaprekar, The Mathematics of the New Self Numbers [annotated and scanned]
- Index entries for Colombian or self numbers and related sequences
Crossrefs
Programs
-
Haskell
a230094 n = a230094_list !! (n-1) a230094_list = filter ((== 2) . a230093) [0..] -- Reinhard Zumkeller, Oct 11 2013
-
Maple
For Maple code see A230093.
-
Mathematica
Position[#, 2][[All, 1]] - 1 &@ Sort[Join[#2, Map[{#, 0} &, Complement[Range[#1], #2[[All, 1]]]] ] ][[All, -1]] & @@ {#, Tally@ Array[# + Total@ IntegerDigits@ # &, # + 1, 0]} &[10^3] (* Michael De Vlieger, Oct 28 2020, after Harvey P. Dale at A230093 *)
Comments